2007-12-25 13:29:02 +01:00
|
|
|
args: with args;
|
2005-11-01 13:11:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-12-24 14:27:07 +01:00
|
|
|
name = "fuse-2.7.2";
|
2005-11-01 13:11:12 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2007-12-24 14:27:07 +01:00
|
|
|
url = mirror://sourceforge/fuse/fuse-2.7.2.tar.gz;
|
|
|
|
sha256 = "1zxssdiirf19mihbnxpy0kiix35d4256b9lani7qwqi7m940jfgv";
|
2005-11-01 13:11:12 +01:00
|
|
|
};
|
2007-12-25 13:29:02 +01:00
|
|
|
configureFlags = [ "--disable-kernel-module"];
|
|
|
|
buildInputs = [ utillinux ];
|
|
|
|
|
|
|
|
inherit utillinux;
|
2007-12-24 14:27:07 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://fuse.sourceforge.net/;
|
|
|
|
description = "Kernel module and library that allows filesystems to be implemented in user space";
|
|
|
|
};
|
2005-11-01 13:11:12 +01:00
|
|
|
}
|