c784146b5b
Semi-automatic update. These checks were performed: - built on NixOS - found 2.2.1 with grep in /nix/store/5164lzx4rdrck8h0xap2dx1ml02x8vzv-kronometer-2.2.1 - found 2.2.1 in filename of file in /nix/store/5164lzx4rdrck8h0xap2dx1ml02x8vzv-kronometer-2.2.1 cc "@peterhoeg"
26 lines
612 B
Nix
26 lines
612 B
Nix
{
|
|
mkDerivation, fetchurl, lib,
|
|
extra-cmake-modules, kdoctools, wrapGAppsHook,
|
|
kconfig, kcrash, kinit
|
|
}:
|
|
|
|
let
|
|
pname = "kronometer";
|
|
version = "2.2.1";
|
|
in
|
|
mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
|
|
sha256 = "18b2qi5b9hn8jy3yhav72n14z5l9w3p5fv5kslhbxc7rfvjr4h3x";
|
|
};
|
|
|
|
meta = with lib; {
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
propagatedBuildInputs = [ kconfig kcrash kinit ];
|
|
}
|