aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2020-11-10 10:55:16 +0100
committerGitHub <noreply@github.com>2020-11-10 10:55:16 +0100
commitfdb4b55a0964dda13e76fd20aded47d9c2083827 (patch)
treef2306166296a1e233eecddd78a4b6354ee483999 /pkgs/applications/office
parentbeafea6499338bf41d9b15e5c8770c74f6e037dc (diff)
parent66229110d15ec81a0c8a5949d67f167dcd2c0d80 (diff)
Merge pull request #102265 from bburdette/timekeeper
Timekeeper gtk app
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/timekeeper/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/applications/office/timekeeper/default.nix b/pkgs/applications/office/timekeeper/default.nix
new file mode 100644
index 000000000000..60b4bad60bb4
--- /dev/null
+++ b/pkgs/applications/office/timekeeper/default.nix
@@ -0,0 +1,44 @@
+{ 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 stdenv.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;
+ };
+}