2009-12-08 12:38:34 +01:00
|
|
|
{ stdenv, fetchurl, utillinux }:
|
2005-11-01 13:11:12 +01:00
|
|
|
|
2009-12-08 12:38:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-05-12 21:46:07 +02:00
|
|
|
name = "fuse-2.8.7";
|
2009-03-25 11:55:40 +01:00
|
|
|
|
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-12-08 12:38:34 +01:00
|
|
|
url = "mirror://sourceforge/fuse/${name}.tar.gz";
|
2012-05-12 21:46:07 +02:00
|
|
|
sha256 = "17dlp6p7kcd8kav3rylmn1a1rqbnri4iawl78mmcm1szllck6w90";
|
2005-11-01 13:11:12 +01:00
|
|
|
};
|
2009-03-25 11:55:40 +01:00
|
|
|
|
|
|
|
configureFlags = "--disable-kernel-module";
|
|
|
|
|
2009-12-08 12:38:34 +01:00
|
|
|
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
|
|
|
}
|