f0a1ab78b4
* Add setupHook for meson/ninja build * libhttpseverywhere: Use meson/ninja setupHooks * jamomacore: Remove superfluous ninja buildInput * Remove obsolete ninja buildPhases These are all handled by ninja's setup hook. * lean2, xcbuild: fix build with ninja setup hook Ninja is a runtime dependency here. However, cmake can generate Ninja build files as well to satisfy the setup hook. * qtwebengine: fix build with ninja setup hook
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ stdenv, fetchurl, python, asciidoc, re2c }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ninja-${version}";
|
|
version = "1.7.2";
|
|
|
|
src = fetchurl {
|
|
name = "${name}.tar.gz";
|
|
url = "https://github.com/ninja-build/ninja/archive/v${version}.tar.gz";
|
|
sha256 = "1n8n3g26ppwh7zwrc37n3alkbpbj0wki34ih53s3rkhs8ajs1p9f";
|
|
};
|
|
|
|
buildInputs = [ python asciidoc re2c ];
|
|
|
|
buildPhase = ''
|
|
python bootstrap.py
|
|
asciidoc doc/manual.asciidoc
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ninja $out/bin/
|
|
|
|
mkdir -p $out/share/doc/ninja
|
|
cp doc/manual.asciidoc $out/share/doc/ninja/
|
|
cp doc/manual.html $out/share/doc/ninja/
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
homepage = http://martine.github.io/ninja/;
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.thoughtpolice maintainers.bjornfor ];
|
|
};
|
|
}
|