* FUSE 2.6.1.

svn path=/nixpkgs/trunk/; revision=7540
This commit is contained in:
Eelco Dolstra 2007-01-06 16:32:29 +00:00
parent 0b587d5ddf
commit 2101b16d47
2 changed files with 6 additions and 10 deletions

View file

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

View file

@ -1,11 +1,11 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "fuse-2.4.1"; name = "fuse-2.6.1";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/fuse-2.4.1.tar.gz; url = http://heanet.dl.sourceforge.net/sourceforge/fuse/fuse-2.6.1.tar.gz;
md5 = "553bd9c5a4f3cd27f3e2b93844711e4c"; md5 = "13e1873086a1d7a95f470bbc7428c528";
}; };
configureFlags = [ "--disable-kernel-module" ]; configureFlags = [ "--disable-kernel-module" ];
} }