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

25 lines
685 B
Nix
Raw Normal View History

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