evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / an / anuko-time-tracker / package.nix
blob583f2db81938d02885ea2b72331be384b637ecb7
1 { lib
2 , stdenvNoCC
3 , fetchFromGitHub
4 , nixosTests
5 , php
6 }:
8 stdenvNoCC.mkDerivation rec {
9   pname = "anuko-time-tracker";
10   version = "1.22.19.5806";
12   # Project commits directly into master and has no release schedule.
13   # Fortunately the current version is defined in the 'APP_VERSION' constant in
14   # /initialize.php so we use its value and set the rev to the commit sha of when the
15   # constant was last updated.
16   src = fetchFromGitHub {
17     owner = "anuko";
18     repo = "timetracker";
19     rev = "43a19fcb51a21f6e3169084ac81308a6ef751e63";
20     hash = "sha256-ZRF9FFbntYY01JflCXkYZyXfyu/x7LNdyOB94UkVFR0=";
21   };
23   # There's nothing to build.
24   dontBuild = true;
26   installPhase = ''
27     mkdir $out/
28     cp -R ./* $out
29   '';
31   passthru.tests = {
32     inherit (nixosTests) anuko-time-tracker;
33   };
35   meta = {
36     description = "Simple, easy to use, open source time tracking system";
37     license = lib.licenses.sspl;
38     homepage = "https://github.com/anuko/timetracker/";
39     platforms = php.meta.platforms;
40     maintainers = with lib.maintainers; [ michaelshmitty ];
41   };