biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / version-management / cvs-fast-export / default.nix
bloba58cda54365844f17cdc02604aeec4341f0ebc29
1 { lib, stdenv, fetchurl, makeWrapper, asciidoc, docbook_xml_dtd_45, docbook_xsl
2 , coreutils, cvs, diffutils, findutils, git, python3, rsync
3 }:
5 stdenv.mkDerivation rec {
6   pname = "cvs-fast-export";
7   version = "1.63";
9   src = fetchurl {
10     url = "http://www.catb.org/~esr/cvs-fast-export/cvs-fast-export-${version}.tar.gz";
11     sha256 = "sha256-YZF2QebWbvn/N9pLpccudZsFHzocJp/3M0Gx9p7fQ5Y=";
12   };
14   strictDeps = true;
15   nativeBuildInputs = [ makeWrapper asciidoc ];
16   buildInputs = [ python3 ];
18   postPatch = ''
19     patchShebangs .
20   '';
22   preBuild = ''
23     makeFlagsArray=(
24       XML_CATALOG_FILES="${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml ${docbook_xsl}/xml/xsl/docbook/catalog.xml"
25       LIBS=""
26       prefix="$out"
27     )
28   '';
30   env = lib.optionalAttrs stdenv.cc.isClang {
31     NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
32   };
34   postInstall = ''
35     wrapProgram $out/bin/cvssync --prefix PATH : ${lib.makeBinPath [ rsync ]}
36     wrapProgram $out/bin/cvsconvert --prefix PATH : $out/bin:${lib.makeBinPath [
37       coreutils cvs diffutils findutils git
38     ]}
39   '';
41   meta = with lib; {
42     description = "Export an RCS or CVS history as a fast-import stream";
43     license = licenses.gpl2Plus;
44     maintainers = with maintainers; [ dfoxfranke ];
45     homepage = "http://www.catb.org/esr/cvs-fast-export/";
46     platforms = platforms.unix;
47   };