blob: 1eaa98bdf512bed1999ef0fa34bea7fb239ddb61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "1.9.0";
src = fetchFromGitHub {
owner = "google";
repo = "benchmark";
rev = "v${version}";
hash = "sha256-5cl1PIjhXaL58kSyWZXRWLq6BITS2BwEovPhwvk2e18=";
};
buildInputs = [ gtest ];
patches = [];
# Do not copy gtest sources into googletest.
postPatch = "";
}
|