25 lines
685 B
Nix
25 lines
685 B
Nix
{
|
|
mkDerivation, fetchurl, lib,
|
|
extra-cmake-modules, kdoctools, wrapGAppsHook,
|
|
kconfig, kcrash, kinit
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kronometer";
|
|
version = "2.2.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
|
|
sha256 = "05hs8729a3aqjpwmn2xdf2sriacrll4sj4ax3lm4s1ravj09n9bm";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://kde.org/applications/utilities/kronometer/";
|
|
description = "A stopwatch application";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [ kconfig kcrash kinit ];
|
|
}
|