summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2020-04-10 16:31:18 +0900
committerGitHub <noreply@github.com>2020-04-10 16:31:18 +0900
commit4ec4715c64fb4d003703786689b191c207966299 (patch)
tree6b5fe7cf2b276057008f7ac89e71ec0abafcecd2 /pkgs
parent4f7cb3a4448b83578fee33894f1505d8dd57bf65 (diff)
parent2cfe3d5b8dfe5ab3333090a4c6f651b7a5a3d2e0 (diff)
downloadnixpkgs-4ec4715c64fb4d003703786689b191c207966299.tar
nixpkgs-4ec4715c64fb4d003703786689b191c207966299.tar.gz
nixpkgs-4ec4715c64fb4d003703786689b191c207966299.tar.bz2
nixpkgs-4ec4715c64fb4d003703786689b191c207966299.tar.lz
nixpkgs-4ec4715c64fb4d003703786689b191c207966299.tar.xz
nixpkgs-4ec4715c64fb4d003703786689b191c207966299.tar.zst
nixpkgs-4ec4715c64fb4d003703786689b191c207966299.zip
Merge pull request #84875 from r-ryantm/auto-update/memtest86-efi
memtest86-efi: 8.2 -> 8.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/memtest86-efi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/memtest86-efi/default.nix b/pkgs/tools/misc/memtest86-efi/default.nix
index 71409b1c3a8..9f029ee5ded 100644
--- a/pkgs/tools/misc/memtest86-efi/default.nix
+++ b/pkgs/tools/misc/memtest86-efi/default.nix
@@ -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;
   };