nixpkgs/pkgs/applications/misc/kapow/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
677 B
Nix
Raw Normal View History

{ lib, stdenv, qmake, fetchFromGitHub, qtbase, qttools, wrapQtAppsHook }:
2020-10-04 02:52:12 +00:00
stdenv.mkDerivation rec {
pname = "kapow";
version = "1.5.10";
src = fetchFromGitHub {
owner = "gottcode";
repo = pname;
rev = "v${version}";
sha256 = "1fz9fb4w21ax8hjs6dwfn2410ig4lqvzdlijq0jcj3jbgxd4i1gw";
};
nativeBuildInputs = [ qmake qttools wrapQtAppsHook ];
buildInputs = [ qtbase ];
meta = with lib; {
2020-10-04 02:52:12 +00:00
description = "Punch clock to track time spent on projects";
mainProgram = "kapow";
2020-10-04 02:52:12 +00:00
homepage = "https://gottcode.org/kapow/";
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}