about summary refs log tree commit diff
path: root/pkgs/applications/kde/kio-admin.nix
blob: 70215ee863ed2862912523723cb0d309403b9c49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  };
}