lol
1{ stdenv, fetchurl, pkgconfig, fuse, xz }:
2
3stdenv.mkDerivation rec {
4 name = "avfs-${version}";
5 version = "1.0.2";
6 src = fetchurl {
7 url = "mirror://sourceforge/avf/${version}/${name}.tar.bz2";
8 sha1 = "e4f8377ea2565c1ac59f7b66893905b778ddf849";
9 };
10
11 buildInputs = [ pkgconfig fuse xz ];
12
13 configureFlags = [
14 "--enable-library"
15 "--enable-fuse"
16 "--disable-static"
17 ];
18
19 meta = {
20 homepage = http://avf.sourceforge.net/;
21 description = "Virtual filesystem that allows browsing of compressed files";
22 platforms = stdenv.lib.platforms.linux;
23 license = stdenv.lib.licenses.gpl2;
24 };
25}