nixpkgs/pkgs/os-specific/linux/fuse/default.nix
Eelco Dolstra 42ac6a45aa * FUSE updated to 2.8.7.
svn path=/nixpkgs/trunk/; revision=34072
2012-05-12 19:46:07 +00:00

24 lines
536 B
Nix

{ stdenv, fetchurl, utillinux }:
stdenv.mkDerivation rec {
name = "fuse-2.8.7";
builder = ./builder.sh;
src = fetchurl {
url = "mirror://sourceforge/fuse/${name}.tar.gz";
sha256 = "17dlp6p7kcd8kav3rylmn1a1rqbnri4iawl78mmcm1szllck6w90";
};
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";
};
}