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