nixpkgs/pkgs/tools/filesystems/archivemount/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

23 lines
586 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse, libarchive }:
let
name = "archivemount-0.8.12";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "https://www.cybernoia.de/software/archivemount/${name}.tar.gz";
sha256 = "12fb8fcmd1zwvfgzx4pay47md5cr2kgxcgq82cm6skmq75alfzi4";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse libarchive ];
meta = {
description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}