ninja: add description and license
This commit is contained in:
parent
5ab346a327
commit
beb2a7a579
1 changed files with 11 additions and 1 deletions
|
@ -24,5 +24,15 @@ stdenv.mkDerivation rec {
|
|||
cp doc/manual.html $out/share/doc/ninja/
|
||||
'';
|
||||
|
||||
homepage = http://martine.github.io/ninja/;
|
||||
meta = {
|
||||
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 = stdenv.lib.licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue