2022-06-16 17:23:12 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2021-05-28 09:39:13 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, python3Packages
|
|
|
|
, asciidoc
|
|
|
|
, docbook_xsl
|
2021-10-01 09:20:50 +00:00
|
|
|
, docbook_xml_dtd_45
|
2021-05-28 09:39:13 +00:00
|
|
|
, git
|
|
|
|
, perl
|
|
|
|
, xmlto
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "stgit";
|
2022-02-10 20:34:41 +00:00
|
|
|
version = "1.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-04-12 18:23:04 +00:00
|
|
|
owner = "stacked-git";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "stgit";
|
|
|
|
rev = "v${version}";
|
2022-02-10 20:34:41 +00:00
|
|
|
sha256 = "sha256-TsJr2Riygz/DZrn6UZMPvq1tTfvl3dFEZZNq2wVj1Nw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles asciidoc xmlto docbook_xsl docbook_xml_dtd_45 python3Packages.setuptools ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
format = "other";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ git perl ];
|
2021-05-28 09:39:13 +00:00
|
|
|
|
|
|
|
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-10-01 09:20:50 +00: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
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
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-10-01 09:20:50 +00:00
|
|
|
installTargets = [ "install" "install-doc" "install-html" ];
|
2021-05-28 09:39:13 +00:00
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd stg \
|
2021-10-01 09:20:50 +00:00
|
|
|
--fish completion/stg.fish \
|
|
|
|
--bash completion/stgit.bash \
|
|
|
|
--zsh completion/stgit.zsh
|
|
|
|
'';
|
2021-05-28 09:39:13 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A patch manager implemented on top of Git";
|
2021-04-12 18:23:04 +00:00
|
|
|
homepage = "https://stacked-git.github.io/";
|
2021-05-20 23:08:51 +00:00
|
|
|
license = licenses.gpl2Only;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
2021-05-20 23:08:51 +00:00
|
|
|
maintainers = with maintainers; [ jshholland ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|