summary refs log tree commit diff
path: root/pkgs/development/libraries/gtest/default.nix
blob: 787cd4066c0ac6a6f2cf371ef3a69425d133001b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchurl, unzip, cmake}:

stdenv.mkDerivation rec {
  version = "1.7.0";
  name = "gtest-${version}";

  src = fetchurl {
    url = "https://googletest.googlecode.com/files/${name}.zip";
    sha256="03fnw3bizw9bcx7l5qy1vz7185g33d5pxqcb6aqxwlrzv26s2z14";
  };

  buildInputs = [ unzip cmake ];

  configurePhase = ''
    mkdir build
    cd build
    cmake ../ -DCMAKE_INSTALL_PREFIX=$out
  '';

  installPhase = ''
    mkdir -p $out/lib
    cp -v libgtest.a libgtest_main.a $out/lib
    cp -v -r ../include $out
    cp -v -r ../src $out
  '';

  meta = with stdenv.lib; {
    description = "Google test: Google's framework for writing C++ tests.";
    homepage = https://code.google.com/p/googletest/;
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ zoomulator ];
  };
}