45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, asciidoc, docbook_xml_dtd_45, docbook_xsl
|
|
, coreutils, cvs, diffutils, findutils, git, python3, rsync
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cvs-fast-export";
|
|
version = "1.57";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.catb.org/~esr/cvs-fast-export/cvs-fast-export-${version}.tar.gz";
|
|
sha256 = "0y1fzsicga19nsarpmn2ms69sq26b2d3d8a1169qbqz1kzr0jji8";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ makeWrapper asciidoc ];
|
|
buildInputs = [ python3 ];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
preBuild = ''
|
|
makeFlagsArray=(
|
|
XML_CATALOG_FILES="${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml ${docbook_xsl}/xml/xsl/docbook/catalog.xml"
|
|
LIBS=""
|
|
prefix="$out"
|
|
)
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cvssync --prefix PATH : ${lib.makeBinPath [ rsync ]}
|
|
wrapProgram $out/bin/cvsconvert --prefix PATH : $out/bin:${lib.makeBinPath [
|
|
coreutils cvs diffutils findutils git
|
|
]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Export an RCS or CVS history as a fast-import stream";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ dfoxfranke ];
|
|
homepage = "http://www.catb.org/esr/cvs-fast-export/";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|