Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 525 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 qtbase, 6 kio, 7 ki18n, 8 polkit-qt, 9}: 10 11mkDerivation { 12 pname = "kio-admin"; 13 14 nativeBuildInputs = [ extra-cmake-modules ]; 15 buildInputs = [ 16 qtbase 17 kio 18 ki18n 19 polkit-qt 20 ]; 21 22 meta = with lib; { 23 description = "Manage files as administrator using the admin:// KIO protocol"; 24 homepage = "https://invent.kde.org/system/kio-admin"; 25 license = licenses.gpl2Plus; 26 platforms = platforms.linux; 27 maintainers = with maintainers; [ k900 ]; 28 }; 29}