2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, fuse, xz }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "avfs";
|
2021-04-26 19:14:03 +00:00
|
|
|
version = "1.1.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/avf/${version}/${pname}-${version}.tar.bz2";
|
2021-04-26 19:14:03 +00:00
|
|
|
sha256 = "0ax1zbw4pmggx1b784bfabdqyn39k7109cnl22p69y2phnpq2y9s";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [ fuse xz ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-library"
|
|
|
|
"--enable-fuse"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://avf.sourceforge.net/";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Virtual filesystem that allows browsing of compressed files";
|
2021-04-22 02:08:21 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2021-04-26 19:14:03 +00:00
|
|
|
license = lib.licenses.gpl2Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|