check: Add metadata

This commit is contained in:
William A. Kennington III 2015-04-30 11:48:19 -07:00
parent c46e1049aa
commit 6a5bf4f04e

View File

@ -12,7 +12,7 @@ stdenv.mkDerivation {
# Test can randomly fail: http://hydra.nixos.org/build/7243912 # Test can randomly fail: http://hydra.nixos.org/build/7243912
doCheck = false; doCheck = false;
meta = { meta = with stdenv.lib; {
description = "Unit testing framework for C"; description = "Unit testing framework for C";
longDescription = longDescription =
@ -26,6 +26,8 @@ stdenv.mkDerivation {
homepage = http://check.sourceforge.net/; homepage = http://check.sourceforge.net/;
license = stdenv.lib.licenses.lgpl2Plus; license = licenses.lgpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
}; };
} }