lol
1{ stdenv, fetchurl, pkgconfig, fuse, libzip, zlib }:
2
3stdenv.mkDerivation rec {
4 name = "fuse-zip-0.2.13";
5
6 src = fetchurl {
7 url = "http://fuse-zip.googlecode.com/files/${name}.tar.gz";
8 sha1 = "9cfa00e38a59d4e06fd47bfaca75ad5e299ecc6b";
9 };
10
11 patches = [ ./libzip.patch ]; # problems with new libzip; from Gentoo
12
13 buildInputs = [ pkgconfig fuse libzip zlib ];
14
15 makeFlags = "INSTALLPREFIX=$(out)";
16
17 meta = {
18 homepage = http://code.google.com/p/fuse-zip/;
19 description = "A FUSE-based filesystem that allows read and write access to ZIP files";
20 platforms = stdenv.lib.platforms.linux;
21 license = stdenv.lib.licenses.gpl3Plus;
22 };
23}