Merge pull request #5871 from osener/avfs

New package: avfs-1.0.2
This commit is contained in:
Domen Kožar 2015-01-20 16:48:51 +01:00
commit 9c24b48e0c
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, fuse, xz }:
stdenv.mkDerivation rec {
name = "avfs-${version}";
version = "1.0.2";
src = fetchurl {
url = "mirror://sourceforge/avf/${version}/${name}.tar.bz2";
sha1 = "e4f8377ea2565c1ac59f7b66893905b778ddf849";
};
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;
};
}

View file

@ -522,6 +522,8 @@ let
attic = callPackage ../tools/backup/attic { };
avfs = callPackage ../tools/filesystems/avfs { };
awscli = callPackage ../tools/admin/awscli { };
ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { };