mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
16 lines
492 B
Nix
16 lines
492 B
Nix
{ 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 ];
|
|
};
|
|
}
|