munge: split outputs, out -> out, dev, man (#512486)

This commit is contained in:
Edward Tjörnhammar
2026-04-27 14:23:45 +00:00
committed by GitHub
3 changed files with 9 additions and 2 deletions
+6
View File
@@ -20,6 +20,12 @@ stdenv.mkDerivation (finalAttrs: {
sha256 = "sha256-Hoaldm55E0HC3qqqBS5uZvlgcWepnVLyJNQMB2P/t9Q=";
};
outputs = [
"out"
"dev"
"man"
];
nativeBuildInputs = [
autoreconfHook
libgcrypt # provides libgcrypt.m4
+2 -1
View File
@@ -61,7 +61,8 @@ stdenv.mkDerivation (finalAttrs: {
configureFlags = [
"--with-libevent=${lib.getDev libevent}"
"--with-libevent-libdir=${lib.getLib libevent}/lib"
"--with-munge=${munge}"
"--with-munge=${lib.getDev munge}"
"--with-munge-libdir=${lib.getLib munge}/lib"
"--with-hwloc=${lib.getDev hwloc}"
"--with-hwloc-libdir=${lib.getLib hwloc}/lib"
];
+1 -1
View File
@@ -126,7 +126,7 @@ stdenv.mkDerivation (finalAttrs: {
"--with-json=${lib.getDev json_c}"
"--with-jwt=${libjwt}"
"--with-lz4=${lib.getDev lz4}"
"--with-munge=${munge}"
"--with-munge=${lib.getDev munge}"
"--with-yaml=${lib.getDev libyaml}"
"--with-ofed=${lib.getDev rdma-core}"
"--sysconfdir=/etc/slurm"