summary refs log tree commit diff
path: root/pkgs/tools/filesystems/kio-fuse/default.nix
blob: a68165956eb31ea03461ffc103087cc457623596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, mkDerivation
, fetchgit
, cmake
, extra-cmake-modules
, kio
, fuse3
}:

mkDerivation rec {
  pname = "kio-fuse";
  version = "5.0.1";

  src = fetchgit {
    url = "https://invent.kde.org/system/kio-fuse.git";
    sha256 = "sha256-LSFbFCaEPkQTk1Rg9xpueBOQpkbr/tgYxLD31F6i/qE=";
    rev = "v${version}";
  };

  nativeBuildInputs = [ cmake extra-cmake-modules ];

  buildInputs = [ kio fuse3 ];

  meta = with lib; {
    description = "FUSE Interface for KIO";
    homepage = "https://invent.kde.org/system/kio-fuse";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ _1000teslas ];
  };
}