nixpkgs/pkgs/tools/filesystems/archivemount/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
590 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, fuse, libarchive }:
stdenv.mkDerivation rec {
pname = "archivemount";
version = "0.9.1";
src = fetchurl {
url = "https://www.cybernoia.de/software/archivemount/archivemount-${version}.tar.gz";
2020-05-04 17:28:43 +02:00
sha256 = "1cy5b6qril9c3ry6fv7ir87s8iyy5vxxmbyx90dm86fbra0vjaf5";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse libarchive ];
meta = {
description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";
2021-01-15 10:19:50 +01:00
license = lib.licenses.gpl2;
2021-03-25 17:34:35 +01:00
platforms = lib.platforms.unix;
};
}