libjson: add license + refactor longDescription
This commit is contained in:
parent
ad250c18f7
commit
804e86c004
@ -11,10 +11,17 @@ in stdenv.mkDerivation rec {
|
|||||||
buildInputs = [ unzip ];
|
buildInputs = [ unzip ];
|
||||||
makeFlags = [ "prefix=$(out)" ];
|
makeFlags = [ "prefix=$(out)" ];
|
||||||
preInstall = "mkdir -p $out/lib";
|
preInstall = "mkdir -p $out/lib";
|
||||||
meta = {
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
homepage = http://libjson.sourceforge.net/;
|
homepage = http://libjson.sourceforge.net/;
|
||||||
description = "A JSON reader and writer";
|
description = "A JSON reader and writer";
|
||||||
longDescription = "A JSON reader and writer which is super-effiecient and usually runs circles around other JSON libraries. It's highly customizable to optimize for your particular project, and very lightweight. For Windows, OSX, or Linux. Works in any language.";
|
longDescription = ''
|
||||||
platforms = stdenv.lib.platforms.unix;
|
A JSON reader and writer which is super-efficient and
|
||||||
|
usually runs circles around other JSON libraries.
|
||||||
|
It's highly customizable to optimize for your particular project, and
|
||||||
|
very lightweight. For Windows, OSX, or Linux. Works in any language.
|
||||||
|
'';
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsd2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user