2018-10-28 10:25:13 +00:00
|
|
|
{ stdenv, cmake, ninja, fetchFromGitHub }:
|
2013-11-11 15:51:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-06 20:37:12 +00:00
|
|
|
name = "gtest-${version}";
|
2018-09-18 17:24:08 +01:00
|
|
|
version = "1.8.1";
|
2013-11-11 15:51:23 +00:00
|
|
|
|
2017-01-06 20:37:12 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "googletest";
|
|
|
|
rev = "release-${version}";
|
2018-09-18 17:24:08 +01:00
|
|
|
sha256 = "0270msj6n7mggh4xqqjp54kswbl7mkcc8px1p5dqdpmw5ngh9fzk";
|
2017-01-06 20:37:12 +00:00
|
|
|
};
|
2013-11-11 15:51:23 +00:00
|
|
|
|
2018-10-28 10:25:13 +00:00
|
|
|
nativeBuildInputs = [ cmake ninja ];
|
2013-11-11 15:51:23 +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";
|
2017-10-27 00:44:19 +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
|
|
|
}
|