7e2c821e58
pkgsStatic.gtest already has CMAKE_BUILD_SHARED set to OFF.
32 lines
744 B
Nix
32 lines
744 B
Nix
{ stdenv, cmake, ninja, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtest";
|
|
version = "1.10.0";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "googletest";
|
|
rev = "release-${version}";
|
|
sha256 = "1zbmab9295scgg4z2vclgfgjchfjailjnvzc6f5x9jvlsdi3dpwz";
|
|
};
|
|
|
|
patches = [
|
|
./fix-cmake-config-includedir.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Google's framework for writing C++ tests";
|
|
homepage = https://github.com/google/googletest;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ zoomulator ivan-tkatchev ];
|
|
};
|
|
}
|