3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/filesystems/avfs/default.nix

28 lines
666 B
Nix
Raw Normal View History

2015-01-20 15:04:52 +00:00
{ stdenv, fetchurl, pkgconfig, fuse, xz }:
stdenv.mkDerivation rec {
name = "avfs-${version}";
version = "1.0.6";
2015-01-20 15:04:52 +00:00
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${name}.tar.bz2";
sha256 = "1hz39f7p5vw647xqk161v3nh88qnd599av6nfidpmkh1d9vkl6jc";
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;
};
}