mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
57407fed58
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
32 lines
651 B
Nix
32 lines
651 B
Nix
{ 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 ];
|
|
};
|
|
}
|