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

Commits on Jun 9, 2019

  1. hyperfine: 1.4.0 -> 1.6.0 (#62883)

    dywedir authored and aristidb committed Jun 9, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    iv-nn Ivann
    Copy the full SHA
    bc14332 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/misc/hyperfine/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/misc/hyperfine/default.nix
Original file line number Diff line number Diff line change
@@ -3,17 +3,17 @@
}:

rustPlatform.buildRustPackage rec {
name = "hyperfine-${version}";
version = "1.4.0";
pname = "hyperfine";
version = "1.6.0";

src = fetchFromGitHub {
owner = "sharkdp";
repo = "hyperfine";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "1mn5nv3zljj2wz40imf62gknv84f7igslsf59gg1qvhgvgsd98sp";
sha256 = "0rwmigdnw2zgixzmif3wzw1adlyyk71jzvjfccqmgz840jkpvmcy";
};

cargoSha256 = "138m29nl65rg3gx2wkx0jj7p8i2csh9kq03v4arp3mnbglp4802y";
cargoSha256 = "1j9ngbabg6vchgpiaqsbcvsm86syx2nbckzf9a4b29m69jv4pp1y";

buildInputs = stdenv.lib.optional stdenv.isDarwin Security;