2011-07-13 12:33:54 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, libarchive }:
|
|
|
|
|
|
|
|
let
|
2020-05-04 15:28:43 +00:00
|
|
|
name = "archivemount-0.9.1";
|
2011-07-13 12:33:54 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://www.cybernoia.de/software/archivemount/${name}.tar.gz";
|
2020-05-04 15:28:43 +00:00
|
|
|
sha256 = "1cy5b6qril9c3ry6fv7ir87s8iyy5vxxmbyx90dm86fbra0vjaf5";
|
2011-07-13 12:33:54 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
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";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-07-13 12:33:54 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|