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