nixpkgs/pkgs/os-specific/linux/fuse/default.nix
2007-12-25 12:29:02 +00:00

20 lines
508 B
Nix

args: with args;
stdenv.mkDerivation {
name = "fuse-2.7.2";
builder = ./builder.sh;
src = fetchurl {
url = mirror://sourceforge/fuse/fuse-2.7.2.tar.gz;
sha256 = "1zxssdiirf19mihbnxpy0kiix35d4256b9lani7qwqi7m940jfgv";
};
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";
};
}