2020-01-01 13:56:55 -08:00
|
|
|
{ stdenv, cmake, ninja, fetchFromGitHub }:
|
2018-12-26 08:57:32 -08:00
|
|
|
|
2013-11-11 07:51:23 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gtest";
|
2019-10-07 02:39:24 -07:00
|
|
|
version = "1.10.0";
|
2013-11-11 07:51:23 -08:00
|
|
|
|
2018-11-18 02:49:00 -08:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-01-06 12:37:12 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "googletest";
|
|
|
|
rev = "release-${version}";
|
2019-10-07 02:39:24 -07:00
|
|
|
sha256 = "1zbmab9295scgg4z2vclgfgjchfjailjnvzc6f5x9jvlsdi3dpwz";
|
2017-01-06 12:37:12 -08:00
|
|
|
};
|
2013-11-11 07:51:23 -08:00
|
|
|
|
2018-12-26 07:05:13 -08:00
|
|
|
patches = [
|
|
|
|
./fix-cmake-config-includedir.patch
|
|
|
|
];
|
|
|
|
|
2018-10-28 03:25:13 -07:00
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
2013-11-11 07:51:23 -08:00
|
|
|
|
2020-01-01 13:56:55 -08:00
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
2018-11-18 02:49:00 -08:00
|
|
|
|
2014-09-18 00:48:31 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "Google's framework for writing C++ tests";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/google/googletest";
|
2014-09-18 00:48:31 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2017-01-06 12:37:12 -08:00
|
|
|
maintainers = with maintainers; [ zoomulator ivan-tkatchev ];
|
2013-11-11 07:51:23 -08:00
|
|
|
};
|
2015-02-06 12:05:11 -08:00
|
|
|
}
|