nixpkgs/pkgs/tools/filesystems/avfs/default.nix
José Romildo Malaquias a76a3cab01 avfs: 1.0.4 -> 1.0.5
2017-10-24 16:34:08 -02:00

28 lines
666 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse, xz }:
stdenv.mkDerivation rec {
name = "avfs-${version}";
version = "1.0.5";
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${name}.tar.bz2";
sha256 = "0xh1wpd8z3m5jmmv24fg4pvqhpnhygs2385qn5473hwk84gnpkp5";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ 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;
};
}