2020-01-12 21:12:59 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, python3, buildDocs ? true, asciidoc, docbook_xml_dtd_45, docbook_xsl, libxslt, re2c }:
|
2018-09-09 19:36:05 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2013-05-11 11:39:52 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ninja";
|
2020-01-28 15:30:23 +01:00
|
|
|
version = "1.10.0";
|
2013-05-11 11:39:52 +02:00
|
|
|
|
2017-11-18 17:55:01 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ninja-build";
|
|
|
|
repo = "ninja";
|
|
|
|
rev = "v${version}";
|
2020-01-28 15:30:23 +01:00
|
|
|
sha256 = "1fbzl7mrcrwp527sgkc1npfl3k6bbpydpiq98xcf1a1hkrx0z5x4";
|
2013-05-11 11:39:52 +02:00
|
|
|
};
|
|
|
|
|
2020-01-12 21:12:59 +01:00
|
|
|
nativeBuildInputs = [ python3 re2c ] ++ optionals buildDocs [ asciidoc docbook_xml_dtd_45 docbook_xsl libxslt.bin ];
|
2013-05-11 11:39:52 +02:00
|
|
|
|
|
|
|
buildPhase = ''
|
2017-11-18 17:55:01 +01:00
|
|
|
python configure.py --bootstrap
|
2018-09-09 19:36:05 +02:00
|
|
|
'' + optionalString buildDocs ''
|
2018-09-16 00:36:21 +02:00
|
|
|
# "./ninja -vn manual" output copied here to support cross compilation.
|
2018-06-04 00:42:52 +02:00
|
|
|
asciidoc -b docbook -d book -o build/manual.xml doc/manual.asciidoc
|
|
|
|
xsltproc --nonet doc/docbook.xsl build/manual.xml > doc/manual.html
|
2013-05-11 11:39:52 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2017-11-18 17:55:01 +01:00
|
|
|
install -Dm555 -t $out/bin ninja
|
|
|
|
install -Dm444 misc/bash-completion $out/share/bash-completion/completions/ninja
|
|
|
|
install -Dm444 misc/zsh-completion $out/share/zsh/site-functions/_ninja
|
2018-09-09 19:36:05 +02:00
|
|
|
'' + optionalString buildDocs ''
|
|
|
|
install -Dm444 -t $out/share/doc/ninja doc/manual.asciidoc doc/manual.html
|
2013-05-11 11:39:52 +02:00
|
|
|
'';
|
|
|
|
|
2017-08-27 19:42:21 +02:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2018-09-09 19:36:05 +02:00
|
|
|
meta = {
|
2013-05-11 11:49:32 +02:00
|
|
|
description = "Small build system with a focus on speed";
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://ninja-build.org/";
|
2013-05-20 19:33:18 +02:00
|
|
|
license = licenses.asl20;
|
2014-04-12 18:37:45 +02:00
|
|
|
platforms = platforms.unix;
|
2017-11-18 17:55:01 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice bjornfor orivej ];
|
2013-05-11 11:49:32 +02:00
|
|
|
};
|
2013-05-11 11:39:52 +02:00
|
|
|
}
|