66004ecba7
SSL. We should either remove neon026 or fix it. svn path=/nixpkgs/trunk/; revision=23505
24 lines
536 B
Nix
24 lines
536 B
Nix
{ stdenv, fetchurl, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fuse-2.8.4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fuse/${name}.tar.gz";
|
|
sha256 = "076y4n9ppmqlfarvm219694cn78qms7k2vh1b4454kkcgg9jmrh4";
|
|
};
|
|
|
|
configureFlags = "--disable-kernel-module";
|
|
|
|
buildInputs = [ utillinux ];
|
|
|
|
inherit utillinux;
|
|
|
|
meta = {
|
|
homepage = http://fuse.sourceforge.net/;
|
|
description = "Kernel module and library that allows filesystems to be implemented in user space";
|
|
};
|
|
}
|