2010-06-17 13:44:40 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, fuse, openssl, asciidoc
|
|
|
|
, docbook_xml_dtd_45, docbook_xsl , libxml2, libxslt }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-15 22:48:08 +00:00
|
|
|
name = "httpfs2-0.1.5";
|
2010-06-17 13:44:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/httpfs/httpfs2/${name}.tar.gz";
|
2013-12-15 22:48:08 +00:00
|
|
|
sha256 = "1h8ggvhw30n2r6w11n1s458ypggdqx6ldwd61ma4yd7binrlpjq1";
|
2010-06-17 13:44:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig fuse openssl
|
|
|
|
asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt
|
|
|
|
];
|
|
|
|
|
|
|
|
installPhase =
|
2012-01-18 20:16:00 +00:00
|
|
|
'' mkdir -p "$out/bin"
|
2010-06-17 13:44:40 +01:00
|
|
|
cp -v httpfs2 "$out/bin"
|
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/share/man/man1"
|
2010-06-17 13:44:40 +01:00
|
|
|
cp -v *.1 "$out/share/man/man1"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "HTTPFS2, a FUSE-based HTTP file system for Linux";
|
|
|
|
|
|
|
|
homepage = http://httpfs.sourceforge.net/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-06-17 13:44:40 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2010-06-17 13:44:40 +01:00
|
|
|
};
|
|
|
|
}
|