2021-02-05 17:12:51 +00:00
|
|
|
{ fetchurl, lib, stdenv, pkg-config, fuse, openssl, asciidoc
|
2020-04-24 23:36:52 +00:00
|
|
|
, docbook_xml_dtd_45, docbook_xsl , libxml2, libxslt }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "httpfs2-0.1.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/httpfs/httpfs2/${name}.tar.gz";
|
|
|
|
sha256 = "1h8ggvhw30n2r6w11n1s458ypggdqx6ldwd61ma4yd7binrlpjq1";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
2021-02-05 17:12:51 +00:00
|
|
|
[ pkg-config fuse openssl
|
2020-04-24 23:36:52 +00:00
|
|
|
asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt
|
|
|
|
];
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
'' mkdir -p "$out/bin"
|
|
|
|
cp -v httpfs2 "$out/bin"
|
|
|
|
|
|
|
|
mkdir -p "$out/share/man/man1"
|
|
|
|
cp -v *.1 "$out/share/man/man1"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-11-03 02:18:15 +00:00
|
|
|
description = "FUSE-based HTTP filesystem for Linux";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
homepage = "http://httpfs.sourceforge.net/";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-04-22 02:08:21 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|