parallel: 20260322 -> 20260422 (#512845)

This commit is contained in:
tomberek
2026-04-26 18:31:57 +00:00
committed by GitHub
+9 -2
View File
@@ -12,11 +12,11 @@
stdenv.mkDerivation (finalAttrs: {
pname = "parallel";
version = "20260322";
version = "20260422";
src = fetchurl {
url = "mirror://gnu/parallel/parallel-${finalAttrs.version}.tar.bz2";
hash = "sha256-dkaA6TL00NIc8DKb2fnu1lmJXeFoNgAfZJFTO4Ir7+A=";
hash = "sha256-ZkzxZdZuohey9JzZanhl7PkMnQYWWZzCq6jK1IHZB7s=";
};
outputs = [
@@ -56,6 +56,13 @@ stdenv.mkDerivation (finalAttrs: {
}"
'';
# Force run `check` instead of the `tests` target, because the `test` target depends on a private testsuite.
# The reason `check` isn't used by default is due to it failing when selecting the target to run. (due to stdenv not overriding the Makefiles SHELL variable from `/bin/bash`).
#
# See:
# https://github.com/NixOS/nixpkgs/blob/ef4f672aa2be8b268a4280e8e2a68cd97a4cf67b/pkgs/stdenv/generic/setup.sh#L1541
# https://github.com/NixOS/nixpkgs/blob/ef4f672aa2be8b268a4280e8e2a68cd97a4cf67b/pkgs/stdenv/generic/setup.sh#L1555
checkTarget = "check";
doCheck = true;
meta = {