about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorpiegames <git@piegames.de>2022-01-16 12:42:22 +0100
committerpiegames <git@piegames.de>2022-01-29 18:09:14 +0100
commit34af921dc9bc69897570362cdd70c9c5f01e3ee1 (patch)
tree449fb82d67f16efffa84a5993559cf99474d1a24 /pkgs/applications/office
parent48e2f6885f797d42a8630982713623c10413963e (diff)
timekeeper: drop
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/timekeeper/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/applications/office/timekeeper/default.nix b/pkgs/applications/office/timekeeper/default.nix
deleted file mode 100644
index ba9390251fc53..0000000000000
--- a/pkgs/applications/office/timekeeper/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv
-, fetchFromGitHub
-, poco
-, pkg-config
-, gnome2
-, gtkmm2
-, lib
-}:
-
-stdenv.mkDerivation rec {
-  pname = "timekeeper";
-  version = "1.0";
-
-  src = fetchFromGitHub {
-    owner = "bburdette";
-    repo = "TimeKeeper";
-    rev = "v${version}";
-    fetchSubmodules = true;
-    sha256 = "03rvzkygnn7igcindbb5bcmfy0l83n0awkzprsnhlb6ndxax3k9w";
-  };
-
-  nativeBuildInputs = [
-    poco
-    pkg-config
-  ];
-
-  buildInputs = [
-    gtkmm2
-    gnome2.libglademm
-    gnome2.libglade
-  ];
-
-  installPhase = ''
-    install -Dm755 TimeKeeper/TimeKeeper $out/bin/timekeeper
-    '';
-
-  meta = with lib; {
-    description = "Log hours worked and make reports";
-    homepage = "https://github.com/bburdette/TimeKeeper";
-    maintainers = with maintainers; [ bburdette ];
-    platforms = [ "x86_64-linux" ];
-    license = licenses.bsd3;
-  };
-}