gtest: Update meta

This commit is contained in:
William A. Kennington III 2014-09-18 00:48:31 -07:00
parent a70ecf4797
commit e0479f3489

View File

@ -24,11 +24,12 @@ stdenv.mkDerivation rec {
cp -v -r ../src $out cp -v -r ../src $out
''; '';
meta = { meta = with stdenv.lib; {
description = "Google test: Google's framework for writing C++ tests."; description = "Google test: Google's framework for writing C++ tests.";
homepage = https://code.google.com/p/googletest/; homepage = https://code.google.com/p/googletest/;
license = stdenv.lib.licenses.bsd3; license = licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.zoomulator ]; platforms = platforms.all;
maintainers = with maintainers; [ zoomulator ];
}; };
} }