nixpkgs-suyu/pkgs/development/tools/build-managers/ninja/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2017-11-18 17:55:01 +01:00
{ stdenv, fetchFromGitHub, python, asciidoc, re2c }:
stdenv.mkDerivation rec {
name = "ninja-${version}";
2017-11-18 17:55:01 +01:00
version = "1.8.2";
2017-11-18 17:55:01 +01:00
src = fetchFromGitHub {
owner = "ninja-build";
repo = "ninja";
rev = "v${version}";
sha256 = "16scq9hcq6c5ap6sy8j4qi75qps1zvrf3p79j1vbrvnqzp928i5f";
};
2017-11-18 17:55:01 +01:00
nativeBuildInputs = [ python asciidoc re2c ];
buildPhase = ''
2017-11-18 17:55:01 +01:00
python configure.py --bootstrap
asciidoc doc/manual.asciidoc
'';
installPhase = ''
2017-11-18 17:55:01 +01:00
install -Dm555 -t $out/bin ninja
install -Dm444 -t $out/share/doc/ninja doc/manual.asciidoc doc/manual.html
install -Dm444 misc/bash-completion $out/share/bash-completion/completions/ninja
install -Dm444 misc/zsh-completion $out/share/zsh/site-functions/_ninja
'';
setupHook = ./setup-hook.sh;
meta = with stdenv.lib; {
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.
'';
2017-11-18 17:55:01 +01:00
homepage = https://ninja-build.org/;
license = licenses.asl20;
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
};
}