tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gtest: Update meta
William A. Kennington III
11 years ago
e0479f34
a70ecf47
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gtest
default.nix
+4
-3
pkgs/development/libraries/gtest/default.nix
···
24
24
cp -v -r ../src $out
25
25
'';
26
26
27
27
-
meta = {
27
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
30
-
license = stdenv.lib.licenses.bsd3;
31
31
-
maintainers = [ stdenv.lib.maintainers.zoomulator ];
30
30
+
license = licenses.bsd3;
31
31
+
platforms = platforms.all;
32
32
+
maintainers = with maintainers; [ zoomulator ];
32
33
};
33
34
}
34
35