mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
22 lines
420 B
Nix
22 lines
420 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
fetchurl,
|
|
pkg-config,
|
|
fuse3,
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "kio-fuse";
|
|
version = "5.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kio-fuse/kio-fuse-${version}.tar.xz";
|
|
hash = "sha256-fRBFgSJ9Whm0JLM/QWjRgVVrEBXW3yIY4BqI1kRJ6Us=";
|
|
};
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [ fuse3 ];
|
|
|
|
meta.license = with lib.licenses; [ gpl3Plus ];
|
|
}
|