memtest86-efi: 8.4 -> 9.3.1000

This commit is contained in:
TredwellGit 2021-12-07 03:47:22 +00:00
parent fe3e7ef66c
commit 4ee3f90c32

View file

@ -8,23 +8,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "memtest86-efi"; pname = "memtest86-efi";
version = "8.4"; version = "9.3.1000";
src = fetchzip { src = fetchzip {
# TODO: We're using the previous version of memtest86 because the # We're using the Internet Archive Wayback Machine because the company developing MemTest86 has stopped providing a versioned download link for the latest version:
# company developing memtest86 has stopped providing a versioned download # https://forums.passmark.com/memtest86/44494-version-8-1-distribution-file-is-not-versioned
# link for the latest version: url = "https://web.archive.org/web/20211111004725/https://www.memtest86.com/downloads/memtest86-usb.zip";
# sha256 = "sha256-GJdZCUFw1uX4HcaaAy5QqDGNqHTFtrqla13wF7xCAaM=";
# https://www.passmark.com/forum/memtest86/44494-version-8-1-distribution-file-is-not-versioned?p=44505#post44505
#
# However, versioned links for the previous version are available, so that
# is what is being used.
#
# It does look like redistribution is okay, so if we had somewhere to host
# 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 = "sha256-jh4FKCYZbOQhRv6B7N8Hmw6RQCQvbBGaGFTMLwM1nk8=";
stripRoot = false; stripRoot = false;
}; };
@ -57,18 +47,16 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
homepage = "http://memtest86.com/"; homepage = "https://www.memtest86.com/";
downloadPage = "https://www.memtest86.com/download.htm"; downloadPage = "https://www.memtest86.com/download.htm";
changelog = "https://www.memtest86.com/whats-new.html";
description = "A tool to detect memory errors, to be run from a bootloader"; description = "A tool to detect memory errors, to be run from a bootloader";
longDescription = '' longDescription = ''
A UEFI app that is able to detect errors in RAM. It can be run from a A UEFI app that is able to detect errors in RAM. It can be run from a
bootloader. Released under a proprietary freeware license. bootloader. Released under a proprietary freeware license.
''; '';
# The Memtest86 License for the Free Edition states, # MemTest86 Free Edition is free to download with no restrictions on usage. However, the source code is not available.
# "MemTest86 Free Edition is free to download with no restrictions on usage". # https://www.memtest86.com/tech_license-information.html
# However the source code for Memtest86 does not appear to be available.
#
# https://www.memtest86.com/license.htm
license = licenses.unfreeRedistributable; license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ cdepillabout ]; maintainers = with maintainers; [ cdepillabout ];
platforms = platforms.linux; platforms = platforms.linux;