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