gbenchmark: init at 1.1.0
This commit is contained in:
parent
0e8e4a08f3
commit
664cc49b19
25
pkgs/development/libraries/gbenchmark/default.nix
Normal file
25
pkgs/development/libraries/gbenchmark/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user