kapow: init at 1.5.10
This commit is contained in:
parent
5cf596c9f0
commit
c229834d43
25
pkgs/applications/misc/kapow/default.nix
Normal file
25
pkgs/applications/misc/kapow/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, qmake, fetchFromGitHub, qtbase, qttools, wrapQtAppsHook }:
|
||||
|
||||
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 stdenv.lib; {
|
||||
description = "Punch clock to track time spent on projects";
|
||||
homepage = "https://gottcode.org/kapow/";
|
||||
maintainers = with maintainers; [ orivej ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
@ -21485,6 +21485,8 @@ in
|
||||
|
||||
kapitonov-plugins-pack = callPackage ../applications/audio/kapitonov-plugins-pack { };
|
||||
|
||||
kapow = libsForQt5.callPackage ../applications/misc/kapow { };
|
||||
|
||||
kdeApplications =
|
||||
let
|
||||
mkApplications = import ../applications/kde;
|
||||
|
Loading…
Reference in New Issue
Block a user