summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/system
diff options
context:
space:
mode:
authorpasqui23 <pasqui23@users.noreply.github.com>2021-11-23 01:32:12 +0000
committerGitHub <noreply@github.com>2021-11-23 02:32:12 +0100
commit8b8bd0e23effca7cb845e1089de9ceb3d1715690 (patch)
tree4a7977aedd31b4b7725fcfdea1fffad08cc53767 /pkgs/applications/system
parentab0c07470b52cf74bb1b671f80c182f6bde8faf6 (diff)
systemdgenie: init at 0.99.0 (#143984)
Diffstat (limited to 'pkgs/applications/system')
-rw-r--r--pkgs/applications/system/systemdgenie/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/system/systemdgenie/default.nix b/pkgs/applications/system/systemdgenie/default.nix
new file mode 100644
index 000000000000..ad009be56355
--- /dev/null
+++ b/pkgs/applications/system/systemdgenie/default.nix
@@ -0,0 +1,32 @@
+{ 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;
+ };
+}