forked from mirrors/nixpkgs
33 lines
718 B
Nix
33 lines
718 B
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, cmake
|
||
|
, extra-cmake-modules
|
||
|
, kxmlgui
|
||
|
, fetchFromGitLab
|
||
|
, kdelibs4support
|
||
|
, wrapQtAppsHook
|
||
|
}:
|
||
|
stdenv.mkDerivation rec{
|
||
|
pname = "systemdgenie";
|
||
|
version = "0.99.0";
|
||
|
src = fetchFromGitLab {
|
||
|
domain = "invent.kde.org";
|
||
|
repo = "SystemdGenie";
|
||
|
owner = "system";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-y+A2OuK1ZooPY5W0SsXEb1aaOAJ2b7QSwiumolmAaR4=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
|
||
|
|
||
|
buildInputs = [ kxmlgui kdelibs4support ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Systemd management utility";
|
||
|
homepage = "https://kde.org";
|
||
|
license = licenses.gpl2;
|
||
|
maintainers = [ maintainers.pasqui23 ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|