nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 mkDerivation,
4 fetchgit,
5 cmake,
6 extra-cmake-modules,
7 kio,
8 fuse3,
9}:
10
11mkDerivation rec {
12 pname = "kio-fuse";
13 version = "5.1.0";
14
15 src = fetchgit {
16 url = "https://invent.kde.org/system/kio-fuse.git";
17 hash = "sha256-xVeDNkSeHCk86L07lPVokSgHNkye2tnLoCkdw4g2Jv0=";
18 rev = "v${version}";
19 };
20
21 nativeBuildInputs = [
22 cmake
23 extra-cmake-modules
24 ];
25
26 buildInputs = [
27 kio
28 fuse3
29 ];
30
31 meta = with lib; {
32 description = "FUSE Interface for KIO";
33 homepage = "https://invent.kde.org/system/kio-fuse";
34 license = licenses.gpl3Plus;
35 platforms = platforms.linux;
36 maintainers = with maintainers; [ _1000teslas ];
37 };
38}