gbenchmark: init at 1.1.0

This commit is contained in:
Nikolay Amiantov 2016-12-16 17:26:21 +03:00 committed by Nikolay Amiantov
parent 0e8e4a08f3
commit 664cc49b19
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, callPackage, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "gbenchmark-${version}";
version = "1.1.0";
src = fetchFromGitHub {
owner = "google";
repo = "benchmark";
rev = "v${version}";
sha256 = "1y7k73kyxx1jlph23csnhdac76px6ghhwwxbcf0133m4rg0wmpn5";
};
buildInputs = [ cmake ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A microbenchmark support library";
homepage = "https://github.com/google/benchmark";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}

View File

@ -2043,6 +2043,7 @@ in
gtest = callPackage ../development/libraries/gtest {};
gmock = callPackage ../development/libraries/gmock {};
gbenchmark = callPackage ../development/libraries/gbenchmark {};
gtkdatabox = callPackage ../development/libraries/gtkdatabox {};