summary refs log tree commit diff
path: root/pkgs/servers/computing
diff options
context:
space:
mode:
authorTobias Poschwatta <poschwatta@zib.de>2022-06-15 11:27:35 +0200
committerTobias Poschwatta <poschwatta@zib.de>2022-06-15 11:27:35 +0200
commit6c23535be76829370f8a6b175c067e26fce695f2 (patch)
tree9aa53a8e5460a4852563b4e08a4de6bbe8c44f6a /pkgs/servers/computing
parentba4453f804ce08d5e92ae50a13295e2bf79195f0 (diff)
downloadnixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.tar
nixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.tar.gz
nixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.tar.bz2
nixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.tar.lz
nixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.tar.xz
nixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.tar.zst
nixpkgs-6c23535be76829370f8a6b175c067e26fce695f2.zip
slurm: 22.05.0.1 -> 22.05.1.1
Release notes: https://github.com/SchedMD/slurm/blob/slurm-22-05-1-1/NEWS

Also adds http-parser so that slurmrestd is built.
Diffstat (limited to 'pkgs/servers/computing')
-rw-r--r--pkgs/servers/computing/slurm/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix
index 1a9d2d53a1b..fc33df8ad4b 100644
--- a/pkgs/servers/computing/slurm/default.nix
+++ b/pkgs/servers/computing/slurm/default.nix
@@ -6,13 +6,14 @@
 , libjwt
 , libyaml
 , json_c
+, http-parser
 # enable internal X11 support via libssh2
 , enableX11 ? true
 }:
 
 stdenv.mkDerivation rec {
   pname = "slurm";
-  version = "22.05.0.1";
+  version = "22.05.1.1";
 
   # N.B. We use github release tags instead of https://www.schedmd.com/downloads.php
   # because the latter does not keep older releases.
@@ -21,7 +22,7 @@ stdenv.mkDerivation rec {
     repo = "slurm";
     # The release tags use - instead of .
     rev = "${pname}-${builtins.replaceStrings ["."] ["-"] version}";
-    sha256 = "0bc8kycrc5a8kqffbd03k22z38f7z8fj725iniq8hz6srhf5nxgs";
+    sha256 = "034qnqvamb7v8gimybjr579442c37qwdq8i2kip6c0zhcl42bvaf";
   };
 
   outputs = [ "out" "dev" ];
@@ -53,10 +54,12 @@ stdenv.mkDerivation rec {
       libmysqlclient ncurses gtk2 lz4 rdma-core
       lua hwloc numactl readline freeipmi shadow.su
       pmix json_c libjwt libyaml dbus libbpf
+      http-parser
   ] ++ lib.optionals enableX11 [ xorg.xauth ];
 
   configureFlags = with lib;
     [ "--with-freeipmi=${freeipmi}"
+      "--with-http-parser=${http-parser}"
       "--with-hwloc=${hwloc.dev}"
       "--with-json=${json_c.dev}"
       "--with-jwt=${libjwt}"