nixpkgs/pkgs/development/libraries/gbenchmark/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
700 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, gtest }:
2016-12-16 15:26:21 +01:00
stdenv.mkDerivation rec {
pname = "gbenchmark";
2022-01-11 10:19:10 +01:00
version = "1.6.1";
2016-12-16 15:26:21 +01:00
src = fetchFromGitHub {
owner = "google";
repo = "benchmark";
rev = "v${version}";
2022-01-11 10:19:10 +01:00
sha256 = "sha256-yUiFxi80FWBmTZgqmqTMf9oqcBeg3o4I4vKd4djyRWY=";
2016-12-16 15:26:21 +01:00
};
2019-03-08 22:19:02 +01:00
nativeBuildInputs = [ cmake ];
2019-06-03 12:35:15 +02:00
postPatch = ''
cp -r ${gtest.src} googletest
chmod -R u+w googletest
'';
2016-12-16 15:26:21 +01:00
2019-06-03 12:35:15 +02:00
doCheck = true;
2016-12-16 15:26:21 +01:00
meta = with lib; {
2016-12-16 15:26:21 +01:00
description = "A microbenchmark support library";
homepage = "https://github.com/google/benchmark";
2016-12-16 15:26:21 +01:00
license = licenses.asl20;
2018-08-31 15:16:59 +02:00
platforms = platforms.linux ++ platforms.darwin;
2016-12-16 15:26:21 +01:00
maintainers = with maintainers; [ abbradar ];
};
}