mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
systemdgenie: init at 0.99.0 (#143984)
This commit is contained in:
parent
ab0c07470b
commit
8b8bd0e23e
32
pkgs/applications/system/systemdgenie/default.nix
Normal file
32
pkgs/applications/system/systemdgenie/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -9846,6 +9846,8 @@ with pkgs;
|
||||
inherit (xorg) xauth xorgserver;
|
||||
};
|
||||
|
||||
systemdgenie = libsForQt5.callPackage ../applications/system/systemdgenie { };
|
||||
|
||||
t = callPackage ../tools/misc/t { };
|
||||
|
||||
tabnine = callPackage ../development/tools/tabnine { };
|
||||
|
Loading…
Reference in New Issue
Block a user