2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, fuse, libarchive }:
|
2011-07-13 12:33:54 +00:00
|
|
|
|
2021-08-12 18:49:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "archivemount";
|
|
|
|
version = "0.9.1";
|
2011-07-13 12:33:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-12 18:49:29 +00:00
|
|
|
url = "https://www.cybernoia.de/software/archivemount/archivemount-${version}.tar.gz";
|
2020-05-04 15:28:43 +00:00
|
|
|
sha256 = "1cy5b6qril9c3ry6fv7ir87s8iyy5vxxmbyx90dm86fbra0vjaf5";
|
2011-07-13 12:33:54 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ fuse libarchive ];
|
2011-07-13 12:33:54 +00:00
|
|
|
|
|
|
|
meta = {
|
2013-10-05 14:22:46 +00:00
|
|
|
description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2021-03-25 16:34:35 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2011-07-13 12:33:54 +00:00
|
|
|
};
|
|
|
|
}
|