lol

kio-fuse: init at 5.0.1 (#138492)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Kevin Tran
Sandro
and committed by
GitHub
57407fed 7280fda6

+33
+31
pkgs/tools/filesystems/kio-fuse/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchgit 4 + , cmake 5 + , extra-cmake-modules 6 + , kio 7 + , fuse3 8 + }: 9 + 10 + mkDerivation rec { 11 + pname = "kio-fuse"; 12 + version = "5.0.1"; 13 + 14 + src = fetchgit { 15 + url = "https://invent.kde.org/system/kio-fuse.git"; 16 + sha256 = "sha256-LSFbFCaEPkQTk1Rg9xpueBOQpkbr/tgYxLD31F6i/qE="; 17 + rev = "v${version}"; 18 + }; 19 + 20 + nativeBuildInputs = [ cmake extra-cmake-modules ]; 21 + 22 + buildInputs = [ kio fuse3 ]; 23 + 24 + meta = with lib; { 25 + description = "FUSE Interface for KIO"; 26 + homepage = "https://invent.kde.org/system/kio-fuse"; 27 + license = licenses.gpl3Plus; 28 + platforms = platforms.linux; 29 + maintainers = with maintainers; [ _1000teslas ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 6745 6745 6746 6746 kibi = callPackage ../applications/editors/kibi { }; 6747 6747 6748 + kio-fuse = libsForQt5.callPackage ../tools/filesystems/kio-fuse { }; 6749 + 6748 6750 kismet = callPackage ../applications/networking/sniffers/kismet { }; 6749 6751 6750 6752 kiterunner = callPackage ../tools/security/kiterunner { };