2015-08-26 02:53:56 +01:00
|
|
|
{stdenv, fetchurl, makeWrapper, flex, bison,
|
2018-07-17 21:11:16 +01:00
|
|
|
asciidoc, docbook_xml_dtd_45, docbook_xsl,
|
2015-08-26 02:53:56 +01:00
|
|
|
libxml2, libxslt,
|
|
|
|
python27, rcs, cvs, git,
|
|
|
|
coreutils, rsync}:
|
|
|
|
with stdenv; with lib;
|
|
|
|
mkDerivation rec {
|
|
|
|
name = "cvs-fast-export-${meta.version}";
|
|
|
|
meta = {
|
2020-01-06 08:38:27 +00:00
|
|
|
version = "1.50";
|
2015-08-26 02:53:56 +01:00
|
|
|
description = "Export an RCS or CVS history as a fast-import stream";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ dfoxfranke ];
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.catb.org/esr/cvs-fast-export/;
|
2015-08-26 02:53:56 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-06 08:38:27 +00:00
|
|
|
url = "http://www.catb.org/~esr/cvs-fast-export/cvs-fast-export-1.50.tar.gz";
|
|
|
|
sha256 = "01m5l9xnl387hpyik5jvyhghkffj5v1wyxqpxpjxv69q9ly905yk";
|
2015-08-26 02:53:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-07-17 21:11:16 +01:00
|
|
|
flex bison asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt
|
2015-08-26 02:53:56 +01:00
|
|
|
python27 rcs cvs git makeWrapper
|
|
|
|
];
|
|
|
|
|
2015-08-26 20:18:06 +01:00
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
|
2015-08-26 02:53:56 +01:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(
|
2018-07-17 21:11:16 +01:00
|
|
|
XML_CATALOG_FILES="${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml ${docbook_xsl}/xml/xsl/docbook/catalog.xml"
|
2015-08-29 01:54:45 +01:00
|
|
|
LIBS=""
|
2015-08-26 02:53:56 +01:00
|
|
|
prefix="$out"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
let
|
2016-04-13 13:53:51 +01:00
|
|
|
binpath = makeBinPath [ out rcs cvs git coreutils rsync ];
|
2015-08-26 02:53:56 +01:00
|
|
|
in ''
|
|
|
|
for prog in cvs-fast-export cvsconvert cvssync; do
|
|
|
|
wrapProgram $out/bin/$prog \
|
|
|
|
--prefix PATH : ${binpath}
|
|
|
|
done
|
|
|
|
''
|
|
|
|
;
|
|
|
|
}
|