biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / system / systemdgenie / default.nix
blobc8d747a8e1220292c5a9621177c7c18ab6b5c873
1 { stdenv
2 , lib
3 , cmake
4 , extra-cmake-modules
5 , kxmlgui
6 , fetchFromGitLab
7 , kdelibs4support
8 , wrapQtAppsHook
9 }:
10 stdenv.mkDerivation rec{
11   pname = "systemdgenie";
12   version = "0.99.0";
13   src = fetchFromGitLab {
14     domain = "invent.kde.org";
15     repo = "SystemdGenie";
16     owner = "system";
17     rev = "v${version}";
18     hash = "sha256-y+A2OuK1ZooPY5W0SsXEb1aaOAJ2b7QSwiumolmAaR4=";
19   };
21   nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
23   buildInputs = [ kxmlgui kdelibs4support ];
25   meta = with lib; {
26     description = "Systemd management utility";
27     mainProgram = "systemdgenie";
28     homepage = "https://kde.org";
29     license = licenses.gpl2;
30     maintainers = [ maintainers.pasqui23 ];
31     platforms = platforms.linux;
32   };