core/pkgs/by-name/ni/ninja/default.nix

121 lines
2.9 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
asciidoc,
docbook_xml_dtd_45,
docbook_xsl,
installShellFiles,
libxslt,
python3,
re2c,
buildPackages,
buildDocs ? true,
2024-05-02 00:46:19 +00:00
}:
stdenv.mkDerivation rec {
pname = "ninja";
version = "1.11.1";
src = fetchFromGitHub {
owner = "ninja-build";
repo = "ninja";
rev = "v${version}";
hash = "sha256-LvV/Fi2ARXBkfyA1paCRmLUwCh/rTyz+tGMg2/qEepI=";
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
2024-06-30 08:16:52 +00:00
nativeBuildInputs =
[
python3
re2c
installShellFiles
]
++ lib.optionals buildDocs [
asciidoc
docbook_xml_dtd_45
docbook_xsl
libxslt.bin
];
2024-05-02 00:46:19 +00:00
patches = lib.optionals stdenv.is32bit [
# Otherwise ninja may fail on some files in a larger FS.
(fetchpatch {
name = "stat64.patch";
url = "https://github.com/ninja-build/ninja/commit/7bba11ae704efc84cac5fde5e9be53f653f237d1.diff";
hash = "sha256-tINS57xLh1lwnYFWCQs5OudfgtIShaOh5zbmv7w5BnQ=";
})
];
postPatch = ''
# write rebuild args to file after bootstrap
substituteInPlace configure.py --replace "subprocess.check_call(rebuild_args)" "open('rebuild_args','w').write(rebuild_args[0])"
'';
2024-06-30 08:16:52 +00:00
buildPhase =
''
runHook preBuild
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
# for list of env vars
# see https://github.com/ninja-build/ninja/blob/v1.11.1/configure.py#L264
CXX="$CXX_FOR_BUILD" \
AR="$AR_FOR_BUILD" \
CFLAGS="$CFLAGS_FOR_BUILD" \
CXXFLAGS="$CXXFLAGS_FOR_BUILD" \
LDFLAGS="$LDFLAGS_FOR_BUILD" \
python configure.py --bootstrap
python configure.py
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
source rebuild_args
''
+ lib.optionalString buildDocs ''
# "./ninja -vn manual" output copied here to support cross compilation.
asciidoc -b docbook -d book -o build/manual.xml doc/manual.asciidoc
xsltproc --nonet doc/docbook.xsl build/manual.xml > doc/manual.html
''
+ ''
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
runHook postBuild
'';
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
installPhase =
''
runHook preInstall
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
install -Dm555 -t $out/bin ninja
installShellCompletion --name ninja \
--bash misc/bash-completion \
--zsh misc/zsh-completion
''
+ lib.optionalString buildDocs ''
install -Dm444 -t $out/share/doc/ninja doc/manual.asciidoc doc/manual.html
''
+ ''
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
runHook postInstall
'';
2024-05-02 00:46:19 +00:00
setupHook = ./setup-hook.sh;
meta = with lib; {
description = "Small build system with a focus on speed";
mainProgram = "ninja";
longDescription = ''
Ninja is a small build system with a focus on speed. It differs from
other build systems in two major respects: it is designed to have its
input files generated by a higher-level build system, and it is designed
to run builds as fast as possible.
'';
homepage = "https://ninja-build.org/";
license = licenses.asl20;
platforms = platforms.unix;
2024-06-30 08:16:52 +00:00
maintainers = with maintainers; [
thoughtpolice
bjornfor
orivej
];
2024-05-02 00:46:19 +00:00
};
}