2011-07-13 05:33:54 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, libarchive }:
|
|
|
|
|
|
|
|
let
|
2013-12-18 03:48:28 -08:00
|
|
|
name = "archivemount-0.8.3";
|
2011-07-13 05:33:54 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.cybernoia.de/software/archivemount/${name}.tar.gz";
|
2013-12-18 03:48:28 -08:00
|
|
|
sha256 = "1zv1fvik76kpp1q5f2dz01f4fwg1m5a8rl168px47jy9nyl9k277";
|
2011-07-13 05:33:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig fuse libarchive ];
|
|
|
|
|
|
|
|
meta = {
|
2013-10-05 07:22:46 -07:00
|
|
|
description = "Gateway between FUSE and libarchive: allows mounting of cpio, .tar.gz, .tar.bz2 archives";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-07-13 05:33:54 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|