2007-12-25 13:29:02 +01:00
|
|
|
args: with args;
|
2005-11-01 13:11:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-03-25 11:55:40 +01:00
|
|
|
name = "fuse-2.7.4";
|
|
|
|
|
2005-11-01 13:11:12 +01:00
|
|
|
builder = ./builder.sh;
|
2009-03-25 11:55:40 +01:00
|
|
|
|
2005-11-01 13:11:12 +01:00
|
|
|
src = fetchurl {
|
2009-03-25 11:55:40 +01:00
|
|
|
url = mirror://sourceforge/fuse/fuse-2.7.4.tar.gz;
|
|
|
|
sha256 = "1rj9xn6ynbcqp6n5pf54jcyq13viij0jhv7adv89pq6lwpn71c68";
|
2005-11-01 13:11:12 +01:00
|
|
|
};
|
2009-03-25 11:55:40 +01:00
|
|
|
|
|
|
|
configureFlags = "--disable-kernel-module";
|
|
|
|
|
|
|
|
buildInputs = [utillinux];
|
2007-12-25 13:29:02 +01:00
|
|
|
|
|
|
|
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
|
|
|
}
|