blob: 13fbc4444632295efcedcd7e82dc6b2a4c14bed5 (
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.1";
src = fetchFromGitHub {
owner = "google";
repo = "benchmark";
rev = "v${version}";
hash = "sha256-5xDg1duixLoWIuy59WT0r5ZBAvTR6RPP7YrhBYkMxc8=";
};
buildInputs = [ gtest ];
patches = [];
# Do not copy gtest sources into googletest.
postPatch = "";
}
|