nixpkgs/pkgs/os-specific/linux/fuse/default.nix

24 lines
536 B
Nix
Raw Normal View History

{ stdenv, fetchurl, utillinux }:
stdenv.mkDerivation rec {
2013-11-28 07:07:34 +00:00
name = "fuse-2.9.3";
builder = ./builder.sh;
src = fetchurl {
url = "mirror://sourceforge/fuse/${name}.tar.gz";
2013-11-28 07:07:34 +00:00
sha256 = "071r6xjgssy8vwdn6m28qq1bqxsd2bphcd2mzhq0grf5ybm87sqb";
};
configureFlags = "--disable-kernel-module";
buildInputs = [ utillinux ];
inherit utillinux;
meta = {
homepage = http://fuse.sourceforge.net/;
description = "Kernel module and library that allows filesystems to be implemented in user space";
};
}