diff --git a/pkgs/development/libraries/gtest/default.nix b/pkgs/development/libraries/gtest/default.nix index a59e3d07cb4..787cd4066c0 100644 --- a/pkgs/development/libraries/gtest/default.nix +++ b/pkgs/development/libraries/gtest/default.nix @@ -24,11 +24,12 @@ stdenv.mkDerivation rec { cp -v -r ../src $out ''; - meta = { + meta = with stdenv.lib; { description = "Google test: Google's framework for writing C++ tests."; homepage = https://code.google.com/p/googletest/; - license = stdenv.lib.licenses.bsd3; - maintainers = [ stdenv.lib.maintainers.zoomulator ]; + license = licenses.bsd3; + platforms = platforms.all; + maintainers = with maintainers; [ zoomulator ]; }; }