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

Commits on Apr 10, 2020

  1. memtest86-efi: 8.2 -> 8.3

    r-ryantm committed Apr 10, 2020
    Copy the full SHA
    8eb079d View commit details
  2. Update pkgs/tools/misc/memtest86-efi/default.nix

    Co-Authored-By: Evils-Devils <30512529+Evils-Devils@users.noreply.github.com>
    cdepillabout and evils authored Apr 10, 2020
    Copy the full SHA
    2cfe3d5 View commit details
  3. Merge pull request #84875 from r-ryantm/auto-update/memtest86-efi

    memtest86-efi: 8.2 -> 8.3
    cdepillabout authored Apr 10, 2020
    Copy the full SHA
    4ec4715 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/memtest86-efi/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/memtest86-efi/default.nix
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@

stdenv.mkDerivation rec {
pname = "memtest86-efi";
version = "8.2";
version = "8.3";

src = fetchzip {
# TODO: The latest version of memtest86 is actually 8.2, but the
# TODO: We're using the previous version of memtest86 because the
# company developing memtest86 has stopped providing a versioned download
# link for the latest version:
#
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
# binaries that we make sure to version, then we could probably keep up
# with the latest versions released by the company.
url = "https://www.memtest86.com/downloads/memtest86-${version}-usb.zip";
sha256 = "1x1wjssr4nnbnfan0pi7ni2dfwnm3288kq584hkfqcyza8xdx03i";
sha256 = "0aldz7rvnfnzb4h447q10k9c9p5ghwzdyn7f6g5lrxiv5vxf3x96";
stripRoot = false;
};