651b72a704
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gtest/versions
33 lines
787 B
Nix
33 lines
787 B
Nix
{ stdenv, cmake, ninja, fetchFromGitHub
|
|
, static ? false }:
|
|
|
|
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 = stdenv.lib.optional (!static) "-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 ];
|
|
};
|
|
}
|