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: 3d6a631ff752
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ef6aeb6475e9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 10, 2020

  1. geekbench: 5.1.0 -> 5.1.1

    r-ryantm authored and Jon committed Apr 10, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    colemickens Cole Mickens
    Copy the full SHA
    ef6aeb6 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/geekbench/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/geekbench/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "geekbench";
version = "5.1.0";
version = "5.1.1";

src = fetchurl {
url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz";
sha256 = "1hqqwk5hbqgrxfqlcbgk6rv3a71k65psxcqa6hw41y9jymnm3dp3";
sha256 = "1wjyn3fkc2zgj0xrd73kidrg1d1wqmil278ak36wf87685w4n0b1";
};

dontConfigure = true;
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "Cross-platform benchmark";
homepage = https://geekbench.com/;
homepage = "https://geekbench.com/";
license = licenses.unfree;
maintainers = [ maintainers.michalrus ];
platforms = [ "x86_64-linux" ];