1 { lib, stdenv, fetchurl, pkg-config, fuse, libarchive }:
3 stdenv.mkDerivation rec {
4 pname = "archivemount";
8 url = "https://www.cybernoia.de/software/archivemount/archivemount-${version}.tar.gz";
9 sha256 = "1cy5b6qril9c3ry6fv7ir87s8iyy5vxxmbyx90dm86fbra0vjaf5";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ fuse libarchive ];
16 description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";
17 license = lib.licenses.gpl2;
18 platforms = lib.platforms.unix;