2012-02-08 16:45:26 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, libzip, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fuse-zip-0.2.13";
|
2013-02-28 15:43:06 +01:00
|
|
|
|
2012-02-08 16:45:26 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://fuse-zip.googlecode.com/files/${name}.tar.gz";
|
|
|
|
sha1 = "9cfa00e38a59d4e06fd47bfaca75ad5e299ecc6b";
|
|
|
|
};
|
|
|
|
|
2013-02-28 15:43:06 +01:00
|
|
|
patches = [ ./libzip.patch ]; # problems with new libzip; from Gentoo
|
|
|
|
|
2012-02-08 16:45:26 +01:00
|
|
|
buildInputs = [ pkgconfig fuse libzip zlib ];
|
|
|
|
|
|
|
|
makeFlags = "INSTALLPREFIX=$(out)";
|
2013-02-28 15:43:06 +01:00
|
|
|
|
2012-02-08 16:45:26 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://code.google.com/p/fuse-zip/;
|
|
|
|
description = "A FUSE-based filesystem that allows read and write access to ZIP files";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
};
|
|
|
|
}
|