summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2022-02-01 20:53:10 +0100
committerGitHub <noreply@github.com>2022-02-01 20:53:10 +0100
commit778d148959533259fecbacb67c03503a1e3d5422 (patch)
treef61a1b0bf81083184cf82054110987347765d0d2 /pkgs/applications/office
parentd4ca3af09b52d1b6d6c045b12d6c904f55cbe0dc (diff)
parent9a2a3d03957cca8f42e0a17ac628acc17bc95821 (diff)
downloadnixpkgs-778d148959533259fecbacb67c03503a1e3d5422.tar
nixpkgs-778d148959533259fecbacb67c03503a1e3d5422.tar.gz
nixpkgs-778d148959533259fecbacb67c03503a1e3d5422.tar.bz2
nixpkgs-778d148959533259fecbacb67c03503a1e3d5422.tar.lz
nixpkgs-778d148959533259fecbacb67c03503a1e3d5422.tar.xz
nixpkgs-778d148959533259fecbacb67c03503a1e3d5422.tar.zst
nixpkgs-778d148959533259fecbacb67c03503a1e3d5422.zip
Merge pull request #155061 from piegamesde/gnome
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 ba9390251fc..00000000000
--- 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;
-  };
-}