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 12:41:18 +00:00
|
|
|
pname = "avfs";
|
2023-03-28 06:24:47 +00:00
|
|
|
version = "1.1.5";
|
2015-01-20 15:04:52 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2";
|
2023-03-28 06:24:47 +00:00
|
|
|
sha256 = "sha256-rZ87ZBBNYAmgWMcPZwiPeZMJv4UZsUsVSvrSJqRScs8=";
|
2015-01-20 15:04:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-09-15 18:50:10 +00:00
|
|
|
|
|
|
|
buildInputs = [ fuse xz ];
|
2015-01-20 15:04:52 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-library"
|
|
|
|
"--enable-fuse"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://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-04-25 04:20:00 +00:00
|
|
|
license = lib.licenses.gpl2Only;
|
2015-01-20 15:04:52 +00:00
|
|
|
};
|
|
|
|
}
|