Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
950 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "memtest86+";
version = "7.20";
src = fetchFromGitHub {
owner = "memtest86plus";
repo = "memtest86plus";
rev = "v${finalAttrs.version}";
hash = "sha256-JZ6feyk66DLKEnugc+yXN4KckQrCTMNqQL4TvCTw1EU=";
};
# Binaries are booted directly by BIOS/UEFI or bootloader
# and should not be patched/stripped
dontPatchELF = true;
dontStrip = true;
passthru.efi = "${finalAttrs.finalPackage}/memtest.efi";
preBuild = ''
cd ${if stdenv.hostPlatform.isi686 then "build32" else "build64"}
'';
installPhase = ''
install -Dm0444 -t $out/ memtest.bin memtest.efi
'';
meta = {
homepage = "https://www.memtest.org/";
description = "Tool to detect memory errors";
license = lib.licenses.gpl2Only;
platforms = [
"x86_64-linux"
"i686-linux"
];
maintainers = [ lib.maintainers.LunNova ];
};
})