simplesamlphp: switch to buildComposerProject2 and tag (#378348)
[NixPkgs.git] / pkgs / applications / misc / kapow / default.nix
blobd2eef8279c3aa93a482e6c486f79108cdc6b45b3
2   lib,
3   stdenv,
4   qmake,
5   fetchFromGitHub,
6   qtbase,
7   qttools,
8   wrapQtAppsHook,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "kapow";
13   version = "1.5.10";
15   src = fetchFromGitHub {
16     owner = "gottcode";
17     repo = pname;
18     rev = "v${version}";
19     sha256 = "1fz9fb4w21ax8hjs6dwfn2410ig4lqvzdlijq0jcj3jbgxd4i1gw";
20   };
22   nativeBuildInputs = [
23     qmake
24     qttools
25     wrapQtAppsHook
26   ];
28   buildInputs = [ qtbase ];
30   meta = with lib; {
31     description = "Punch clock to track time spent on projects";
32     mainProgram = "kapow";
33     homepage = "https://gottcode.org/kapow/";
34     maintainers = with maintainers; [ orivej ];
35     platforms = platforms.linux;
36     license = licenses.gpl3Plus;
37   };