mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
105 lines
2.3 KiB
Nix
105 lines
2.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
installShellFiles,
|
|
makeWrapper,
|
|
asciidoc,
|
|
docbook_xsl,
|
|
docbook_xml_dtd_45,
|
|
xmlto,
|
|
curl,
|
|
git,
|
|
perl,
|
|
darwin,
|
|
libiconv,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "stgit";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stacked-git";
|
|
repo = "stgit";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-mR2XsZrTQhpKU5qfOm9Cbj/2zQ9zE8judJkSGtgZHCI=";
|
|
};
|
|
|
|
cargoHash = "sha256-cOd3t/l+b2gnM0G+atyUXK7oU4JBGXlJY64UmfGuhdU=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
makeWrapper
|
|
asciidoc
|
|
xmlto
|
|
docbook_xsl
|
|
docbook_xml_dtd_45
|
|
perl
|
|
];
|
|
buildInputs = [ curl ];
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
perl
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.system_cmds
|
|
libiconv
|
|
];
|
|
|
|
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
|
|
|
|
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
|
|
'';
|
|
|
|
makeFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
"XMLTO_EXTRA=--skip-validation"
|
|
"PERL_PATH=${perl}/bin/perl"
|
|
];
|
|
|
|
dontCargoBuild = true;
|
|
buildFlags = [ "all" ];
|
|
|
|
dontCargoCheck = true;
|
|
checkTarget = "test";
|
|
|
|
dontCargoInstall = true;
|
|
installTargets = [
|
|
"install"
|
|
"install-man"
|
|
"install-html"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/stg --prefix PATH : ${lib.makeBinPath [ git ]}
|
|
|
|
installShellCompletion --cmd stg \
|
|
--fish completion/stg.fish \
|
|
--bash completion/stgit.bash \
|
|
--zsh completion/stgit.zsh
|
|
'';
|
|
|
|
meta = {
|
|
description = "Patch manager implemented on top of Git";
|
|
homepage = "https://stacked-git.github.io/";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ jshholland ];
|
|
mainProgram = "stg";
|
|
};
|
|
})
|