override.nix 345 B

1234567891011121314151617
  1. pkgs: attrs: with pkgs; with attrs; rec {
  2. version = "1.9.1";
  3. src = fetchFromGitHub {
  4. owner = "google";
  5. repo = "benchmark";
  6. rev = "v${version}";
  7. hash = "sha256-5xDg1duixLoWIuy59WT0r5ZBAvTR6RPP7YrhBYkMxc8=";
  8. };
  9. buildInputs = [ gtest ];
  10. patches = [];
  11. # Do not copy gtest sources into googletest.
  12. postPatch = "";
  13. }