gtest: Update meta

+4 -3
+4 -3
pkgs/development/libraries/gtest/default.nix
··· 24 cp -v -r ../src $out 25 ''; 26 27 - meta = { 28 description = "Google test: Google's framework for writing C++ tests."; 29 homepage = https://code.google.com/p/googletest/; 30 - license = stdenv.lib.licenses.bsd3; 31 - maintainers = [ stdenv.lib.maintainers.zoomulator ]; 32 }; 33 } 34
··· 24 cp -v -r ../src $out 25 ''; 26 27 + meta = with stdenv.lib; { 28 description = "Google test: Google's framework for writing C++ tests."; 29 homepage = https://code.google.com/p/googletest/; 30 + license = licenses.bsd3; 31 + platforms = platforms.all; 32 + maintainers = with maintainers; [ zoomulator ]; 33 }; 34 } 35