aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/office/timekeeper/default.nix
blob: 60b4bad60bb4289b1dabe4e7f4cfbbd0f8c52bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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;
  };
}