2015-01-20 15:04:52 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, xz }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "avfs-${version}";
|
2019-07-01 06:57:52 +01:00
|
|
|
version = "1.1.0";
|
2015-01-20 15:04:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/avf/${version}/${name}.tar.bz2";
|
2019-07-01 06:57:52 +01:00
|
|
|
sha256 = "19rk2c0xd3mi66kr88ykrcn81fv09c09md0gf6mnm9z1bd7p7wx7";
|
2015-01-20 15:04:52 +00:00
|
|
|
};
|
|
|
|
|
2016-09-15 19:50:10 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ fuse xz ];
|
2015-01-20 15:04:52 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-library"
|
|
|
|
"--enable-fuse"
|
|
|
|
"--disable-static"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://avf.sourceforge.net/;
|
|
|
|
description = "Virtual filesystem that allows browsing of compressed files";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|