nixpkgs/pkgs/development/libraries/gtest/default.nix
2022-07-01 18:34:59 -04:00

32 lines
730 B
Nix

{ lib, stdenv, cmake, ninja, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "gtest";
version = "1.12.1";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "google";
repo = "googletest";
rev = "release-${version}";
hash = "sha256-W+OxRTVtemt2esw4P7IyGWXOonUN5ZuscjvzqkYvZbM=";
};
patches = [
./fix-cmake-config-includedir.patch
];
nativeBuildInputs = [ cmake ninja ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
meta = with lib; {
description = "Google's framework for writing C++ tests";
homepage = "https://github.com/google/googletest";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ ivan-tkatchev ];
};
}