nixpkgs-suyu/pkgs/applications/version-management/stgit/default.nix

76 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchFromGitHub
, installShellFiles
, python3Packages
, asciidoc
, docbook_xsl
2021-09-28 07:49:34 +02:00
, docbook_xml_dtd_45
, git
, perl
, xmlto
}:
python3Packages.buildPythonApplication rec {
pname = "stgit";
2022-01-31 08:40:17 +01:00
version = "1.5";
src = fetchFromGitHub {
2021-04-09 15:09:27 +02:00
owner = "stacked-git";
repo = "stgit";
rev = "v${version}";
2022-01-31 08:40:17 +01:00
sha256 = "sha256-TsJr2Riygz/DZrn6UZMPvq1tTfvl3dFEZZNq2wVj1Nw=";
};
nativeBuildInputs = [ installShellFiles asciidoc xmlto docbook_xsl docbook_xml_dtd_45 python3Packages.setuptools ];
format = "other";
nativeCheckInputs = [ git perl ];
postPatch = ''
for f in Documentation/*.xsl; do
substituteInPlace $f \
--replace http://docbook.sourceforge.net/release/xsl-ns/current/manpages/docbook.xsl \
${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl \
--replace http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl \
${docbook_xsl}/xml/xsl/docbook/html/docbook.xsl
done
2021-09-28 07:49:34 +02:00
substituteInPlace Documentation/texi.xsl \
--replace http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd \
${docbook_xml_dtd_45}/xml/dtd/docbook/docbookx.dtd
cat > stgit/_version.py <<EOF
__version__ = "${version}"
EOF
'';
makeFlags = [
"prefix=${placeholder "out"}"
"MAN_BASE_URL=${placeholder "out"}/share/man"
"XMLTO_EXTRA=--skip-validation"
];
buildFlags = [ "all" "doc" ];
checkTarget = "test";
checkFlags = [ "PERL_PATH=${perl}/bin/perl" ];
2021-09-28 07:49:34 +02:00
installTargets = [ "install" "install-doc" "install-html" ];
postInstall = ''
installShellCompletion --cmd stg \
2021-09-28 07:49:34 +02:00
--fish completion/stg.fish \
--bash completion/stgit.bash \
--zsh completion/stgit.zsh
'';
meta = with lib; {
description = "A patch manager implemented on top of Git";
2021-04-09 15:09:27 +02:00
homepage = "https://stacked-git.github.io/";
2021-05-07 19:04:06 +02:00
license = licenses.gpl2Only;
platforms = platforms.unix;
2021-05-07 19:04:06 +02:00
maintainers = with maintainers; [ jshholland ];
};
}