svn path=/nixpkgs/trunk/; revision=4183
This commit is contained in:
Eelco Dolstra 2005-11-01 12:11:12 +00:00
parent f47cef6607
commit 1d1d38a3b6
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
source $stdenv/setup
export MOUNT_FUSE_PATH=$out/sbin
installPhase () {
# !!! quick hack to get fuse to install; it currently tries to
# install a device node /dev/fuse.
make install || true
}
genericBuild

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "fuse-2.4.1";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/fuse/fuse-2.4.1.tar.gz;
md5 = "553bd9c5a4f3cd27f3e2b93844711e4c";
};
configureFlags = [ "--disable-kernel-module" ];
}