2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, fuse, xz }:
|
2015-01-20 15:04:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "avfs";
|
2021-04-25 05:20:00 +01:00
|
|
|
version = "1.1.4";
|
2015-01-20 15:04:52 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2";
|
2021-04-25 05:20:00 +01:00
|
|
|
sha256 = "0ax1zbw4pmggx1b784bfabdqyn39k7109cnl22p69y2phnpq2y9s";
|
2015-01-20 15:04:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-09-15 19:50:10 +01:00
|
|
|
|
|
|
|
buildInputs = [ fuse xz ];
|
2015-01-20 15:04:52 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-library"
|
|
|
|
"--enable-fuse"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://avf.sourceforge.net/";
|
2015-01-20 15:04:52 +00:00
|
|
|
description = "Virtual filesystem that allows browsing of compressed files";
|
2021-03-25 16:37:28 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2015-01-20 15:04:52 +00:00
|
|
|
};
|
|
|
|
}
|