Fix some meta
This commit is contained in:
parent
1d15063768
commit
21fea99191
@ -8,13 +8,11 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1nyka87yf2jfd0y6sspll0yxwb8zi7kyvajrdbjmh4axc5s1cw1x";
|
sha256 = "1nyka87yf2jfd0y6sspll0yxwb8zi7kyvajrdbjmh4axc5s1cw1x";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A C library for asynchronous DNS requests";
|
description = "A C library for asynchronous DNS requests";
|
||||||
|
|
||||||
homepage = http://c-ares.haxx.se;
|
homepage = http://c-ares.haxx.se;
|
||||||
|
license = licenses.mit;
|
||||||
license = stdenv.lib.licenses.mit;
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ shlevy ];
|
||||||
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -8,9 +8,11 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1mvq9p85khsl818i4vbszyfab0fd45mdrwrxjkzw05mk1xcyc1br";
|
sha256 = "1mvq9p85khsl818i4vbszyfab0fd45mdrwrxjkzw05mk1xcyc1br";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.digip.org/jansson/";
|
homepage = "http://www.digip.org/jansson/";
|
||||||
description = "C library for encoding, decoding and manipulating JSON data";
|
description = "C library for encoding, decoding and manipulating JSON data";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,7 @@ stdenv.mkDerivation (rec {
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Lossless data-compression library";
|
description = "Lossless data-compression library";
|
||||||
license = licenses.zlib;
|
license = licenses.zlib;
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
} // (if stdenv.isDarwin then {
|
} // (if stdenv.isDarwin then {
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user