kio-admin: init at 1.0.0

This commit is contained in:
K900 2023-02-08 12:35:13 +03:00
parent 2122d22a4b
commit fe585e3988
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchFromGitLab, cmake, extra-cmake-modules, qtbase, wrapQtAppsHook, kio, ki18n, polkit-qt }:
stdenv.mkDerivation rec {
pname = "kio-admin";
version = "1.0.0";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "system";
repo = "kio-admin";
rev = "v${version}";
hash = "sha256-llnUsOttqFJVArJdZS9s6qHS9eGbdtdoaPMXKHtsUn4=";
};
nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
buildInputs = [ qtbase kio ki18n polkit-qt ];
}

View file

@ -8791,6 +8791,8 @@ with pkgs;
kibi = callPackage ../applications/editors/kibi { };
kio-admin = libsForQt5.callPackage ../tools/filesystems/kio-admin { };
kio-fuse = libsForQt5.callPackage ../tools/filesystems/kio-fuse { };
kismet = callPackage ../applications/networking/sniffers/kismet { };