2009-12-08 11:38:34 +00:00
|
|
|
{ stdenv, fetchurl, utillinux }:
|
2005-11-01 12:11:12 +00:00
|
|
|
|
2009-12-08 11:38:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-28 07:07:34 +00:00
|
|
|
name = "fuse-2.9.3";
|
2009-03-25 10:55:40 +00:00
|
|
|
|
2005-11-01 12:11:12 +00:00
|
|
|
builder = ./builder.sh;
|
2009-03-25 10:55:40 +00:00
|
|
|
|
2005-11-01 12:11:12 +00:00
|
|
|
src = fetchurl {
|
2009-12-08 11:38:34 +00:00
|
|
|
url = "mirror://sourceforge/fuse/${name}.tar.gz";
|
2013-11-28 07:07:34 +00:00
|
|
|
sha256 = "071r6xjgssy8vwdn6m28qq1bqxsd2bphcd2mzhq0grf5ybm87sqb";
|
2005-11-01 12:11:12 +00:00
|
|
|
};
|
2009-03-25 10:55:40 +00:00
|
|
|
|
|
|
|
configureFlags = "--disable-kernel-module";
|
|
|
|
|
2009-12-08 11:38:34 +00:00
|
|
|
buildInputs = [ utillinux ];
|
2007-12-25 12:29:02 +00:00
|
|
|
|
|
|
|
inherit utillinux;
|
2007-12-24 13:27:07 +00:00
|
|
|
|
2014-01-28 17:11:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
2007-12-24 13:27:07 +00:00
|
|
|
homepage = http://fuse.sourceforge.net/;
|
|
|
|
description = "Kernel module and library that allows filesystems to be implemented in user space";
|
2014-01-28 17:11:00 +00:00
|
|
|
platforms = platforms.linux;
|
2014-09-13 11:51:39 +00:00
|
|
|
maintainers = [ maintainers.mornfall ];
|
2007-12-24 13:27:07 +00:00
|
|
|
};
|
2005-11-01 12:11:12 +00:00
|
|
|
}
|