nixpkgs/pkgs/tools/filesystems/avfs/default.nix

26 lines
638 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}";
2015-09-29 08:41:00 +00:00
version = "1.0.3";
2015-01-20 15:04:52 +00:00
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${name}.tar.bz2";
2015-09-29 08:41:00 +00:00
sha256 = "1j7ysjkv0kbkwjagcdgwcnbii1smd58pwwlpz0l7amki5dxygpn6";
2015-01-20 15:04:52 +00:00
};
buildInputs = [ pkgconfig fuse xz ];
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;
};
}