mueval: remove check

Removes the check introduced in https://github.com/NixOS/nixpkgs/pull/301484
as it fails too often on resource-constrained machines.
This commit is contained in:
Naïm Favier 2024-06-03 13:31:32 +02:00
parent 5a64d9a242
commit 35d3f8e1c2
No known key found for this signature in database
GPG Key ID: 95AFCE8211908325

View File

@ -29,12 +29,6 @@ in stdenv.mkDerivation {
runHook postBuild
'';
doCheck = true;
checkPhase = ''
[[ $($out/bin/mueval -e 42) == 42 ]]
'';
passthru = { inherit defaultPkgs; };
meta.mainProgram = "mueval";
}