tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
Minor cleanup after merge
Michael Raskin
11 years ago
a0ea30c6
81627ab2
+1
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gmock
default.nix
+1
-7
pkgs/development/libraries/gmock/default.nix
reviewed
···
11
11
12
12
buildInputs = [ unzip cmake ];
13
13
14
14
-
configurePhase = ''
15
15
-
mkdir build
16
16
-
cd build
17
17
-
cmake ../ -DCMAKE_INSTALL_PREFIX=$out
18
18
-
'';
19
19
-
20
14
buildPhase = ''
21
15
# avoid building gtest
22
16
make gmock gmock_main
···
30
24
'';
31
25
32
26
meta = {
33
33
-
description = "Google mock: Google's framework for writing C++ mock classes.";
27
27
+
description = "Google mock: Google's framework for writing C++ mock classes";
34
28
homepage = https://code.google.com/p/googlemock/;
35
29
license = stdenv.lib.licenses.bsd3;
36
30
maintainers = [ stdenv.lib.maintainers.auntie ];