2023-02-16 17:41:37 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, ninja
|
2024-06-24 18:47:55 +00:00
|
|
|
# Enable C++17 support
|
|
|
|
# https://github.com/google/googletest/issues/3081
|
|
|
|
# Projects that require a higher standard can override this package.
|
|
|
|
# For an example why that may be necessary, see:
|
|
|
|
# https://github.com/mhx/dwarfs/issues/188#issuecomment-1907574427
|
|
|
|
# Setting this to `null` does not pass any flags to set this.
|
|
|
|
, cxx_standard ? (
|
|
|
|
if (
|
|
|
|
(stdenv.cc.isGNU && (lib.versionOlder stdenv.cc.version "11.0"))
|
|
|
|
||
|
|
|
|
(stdenv.cc.isClang && (lib.versionOlder stdenv.cc.version "16.0"))
|
|
|
|
)
|
|
|
|
then "17"
|
|
|
|
else null
|
|
|
|
)
|
2023-02-16 17:41:37 +00:00
|
|
|
, static ? stdenv.hostPlatform.isStatic,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gtest";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "1.14.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "googletest";
|
2024-02-29 20:09:43 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-t0RchAHTJbuI5YW4uyBPykTvcjy90JW9AOPNjIhwh6U=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./fix-cmake-config-includedir.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
|
2024-06-24 18:47:55 +00:00
|
|
|
] ++ lib.optionals (cxx_standard != null) [
|
|
|
|
"-DCMAKE_CXX_STANDARD=${cxx_standard}"
|
2023-02-16 17:41:37 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Google's framework for writing C++ tests";
|
|
|
|
homepage = "https://github.com/google/googletest";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with maintainers; [ ivan-tkatchev ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|