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

27 lines
647 B
Nix
Raw Normal View History

2015-01-20 15:04:52 +00:00
{ stdenv, fetchurl, pkgconfig, fuse, xz }:
stdenv.mkDerivation rec {
pname = "avfs";
2020-08-25 01:38:30 +00:00
version = "1.1.3";
2015-01-20 15:04:52 +00:00
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2";
2020-08-25 01:38:30 +00:00
sha256 = "1psh8k7g7rb0gn7aygbjv86kxyi9xq07barxksa99nnmq3lc2kjg";
2015-01-20 15:04:52 +00:00
};
2016-09-15 18:50:10 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse xz ];
2015-01-20 15:04:52 +00:00
configureFlags = [
"--enable-library"
"--enable-fuse"
];
meta = {
homepage = "http://avf.sourceforge.net/";
2015-01-20 15:04:52 +00:00
description = "Virtual filesystem that allows browsing of compressed files";
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2;
};
}