Archived
1
0
forked from rarias/bscpkgs

Fix SLURM bug in rank integer sign expansion

See: https://bugs.schedmd.com/show_bug.cgi?id=19324

Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es>
This commit is contained in:
2024-03-15 13:12:46 +01:00
parent 30f2079f0b
commit 2b26cd2f46
2 changed files with 18 additions and 0 deletions

View File

@@ -30,5 +30,12 @@ final: prev:
];
});
slurm = prev.slurm.overrideAttrs (old: {
patches = (old.patches or []) ++ [
# See https://bugs.schedmd.com/show_bug.cgi?id=19324
./slurm-rank-expansion.patch
];
});
prometheus-slurm-exporter = prev.callPackage ./slurm-exporter.nix { };
}