nixpkgs/pkgs/tools/misc/kronometer/default.nix

25 lines
685 B
Nix
Raw Normal View History

2016-08-03 04:50:14 +02:00
{
2017-05-16 17:56:41 +02:00
mkDerivation, fetchurl, lib,
extra-cmake-modules, kdoctools, wrapGAppsHook,
2017-07-04 21:48:15 +02:00
kconfig, kcrash, kinit
2016-08-03 04:50:14 +02:00
}:
2019-08-19 16:56:02 +02:00
mkDerivation rec {
2016-08-03 04:50:14 +02:00
pname = "kronometer";
version = "2.2.3";
2016-08-03 04:50:14 +02:00
2017-05-16 17:56:41 +02:00
src = fetchurl {
2019-08-19 16:56:02 +02:00
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
sha256 = "05hs8729a3aqjpwmn2xdf2sriacrll4sj4ax3lm4s1ravj09n9bm";
2017-05-16 17:56:41 +02:00
};
2016-08-03 04:50:14 +02:00
2017-05-16 17:56:41 +02:00
meta = with lib; {
homepage = "https://kde.org/applications/utilities/kronometer/";
description = "A stopwatch application";
2017-05-16 17:56:41 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
2016-08-03 04:50:14 +02:00
};
2019-08-19 16:56:02 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-07-04 21:48:15 +02:00
propagatedBuildInputs = [ kconfig kcrash kinit ];
2016-08-03 04:50:14 +02:00
}