summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-09-02 01:53:42 +0400
committerMichael Raskin <7c6f434c@mail.ru>2014-09-02 01:53:42 +0400
commita0ea30c613f61831054b43fd3c6c73f9e9d7f2b0 (patch)
treebac3df446423aa85787086bcb546789e51d8f750 /pkgs/development/libraries
parent81627ab2d4dd3abdea97b17dc5f7439452288580 (diff)
downloadnixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.tar
nixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.tar.gz
nixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.tar.bz2
nixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.tar.lz
nixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.tar.xz
nixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.tar.zst
nixpkgs-a0ea30c613f61831054b43fd3c6c73f9e9d7f2b0.zip
Minor cleanup after merge
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/gmock/default.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/pkgs/development/libraries/gmock/default.nix b/pkgs/development/libraries/gmock/default.nix
index 33c6e00ef65..71ac281195b 100644
--- a/pkgs/development/libraries/gmock/default.nix
+++ b/pkgs/development/libraries/gmock/default.nix
@@ -11,12 +11,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ unzip cmake ];
 
-  configurePhase = ''
-    mkdir build
-    cd build
-    cmake ../ -DCMAKE_INSTALL_PREFIX=$out
-  '';
-
   buildPhase = ''
     # avoid building gtest
     make gmock gmock_main
@@ -30,7 +24,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    description = "Google mock: Google's framework for writing C++ mock classes.";
+    description = "Google mock: Google's framework for writing C++ mock classes";
     homepage = https://code.google.com/p/googlemock/;
     license = stdenv.lib.licenses.bsd3;
     maintainers = [ stdenv.lib.maintainers.auntie ];