Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ad3172922613
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 80bf658eb822
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 3, 2019

  1. gbenchmark: 1.4.1 -> 1.5.0

    abbradar committed Jun 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    80bf658 View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/development/libraries/gbenchmark/default.nix
10 changes: 7 additions & 3 deletions pkgs/development/libraries/gbenchmark/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,24 @@

stdenv.mkDerivation rec {
name = "gbenchmark-${version}";
version = "1.4.1";
version = "1.5.0";

src = fetchFromGitHub {
owner = "google";
repo = "benchmark";
rev = "v${version}";
sha256 = "0l1f6azka85fkb8kdmh4qmmpxhsv7lr7wvll6sld31mfz0cai1kd";
sha256 = "0r9dbg4cbk47gwmayys31a83m3y67k0kh1f6pl8i869rbd609ndh";
};

nativeBuildInputs = [ cmake ];

buildInputs = [ gtest ];
postPatch = ''
cp -r ${gtest.src} googletest
chmod -R u+w googletest
'';

enableParallelBuilding = true;
doCheck = true;

meta = with stdenv.lib; {
description = "A microbenchmark support library";