gtest: Update meta

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