nixpkgs/pkgs/applications/kde/kio-admin.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
525 B
Nix
Raw Normal View History

2023-03-17 22:39:35 +00:00
{
mkDerivation,
lib,
extra-cmake-modules,
qtbase,
kio,
ki18n,
polkit-qt,
}:
mkDerivation {
pname = "kio-admin";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
qtbase
kio
ki18n
polkit-qt
];
meta = with lib; {
description = "Manage files as administrator using the admin:// KIO protocol";
homepage = "https://invent.kde.org/system/kio-admin";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ k900 ];
};
}