nixpkgs/pkgs/servers/computing/slurm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

106 lines
3.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, libtool, curl
2022-05-29 15:16:07 +00:00
, python3, munge, perl, pam, shadow, coreutils, dbus, libbpf
2022-07-29 21:20:51 +00:00
, ncurses, libmysqlclient, lua, hwloc, numactl
, readline, freeipmi, xorg, lz4, rdma-core, nixosTests
2020-07-02 11:21:50 +00:00
, pmix
, libjwt
, libyaml
, json_c
, http-parser
# enable internal X11 support via libssh2
, enableX11 ? true
2022-07-29 21:20:51 +00:00
, enableGtk2 ? false, gtk2
}:
2015-02-28 17:11:13 +00:00
stdenv.mkDerivation rec {
pname = "slurm";
2024-03-26 01:23:44 +00:00
version = "23.11.5.1";
2015-02-28 17:11:13 +00:00
# N.B. We use github release tags instead of https://www.schedmd.com/downloads.php
# because the latter does not keep older releases.
src = fetchFromGitHub {
owner = "SchedMD";
repo = "slurm";
2018-08-20 11:37:23 +00:00
# The release tags use - instead of .
2019-08-17 07:39:23 +00:00
rev = "${pname}-${builtins.replaceStrings ["."] ["-"] version}";
2024-03-26 01:23:44 +00:00
hash = "sha256-YUsAPADRVf5JUd06DuSloeVNb8+3x7iwhFZ/JQyj0ZU=";
2015-02-28 17:11:13 +00:00
};
outputs = [ "out" "dev" ];
2016-05-27 23:29:42 +00:00
patches = [
# increase string length to allow for full
# path of 'echo' in nix store
./common-env-echo.patch
];
prePatch = ''
substituteInPlace src/common/env.c \
--replace "/bin/echo" "${coreutils}/bin/echo"
# Autoconf does not support split packages for pmix (libs and headers).
# Fix the path to the pmix libraries, so dlopen can find it.
substituteInPlace src/plugins/mpi/pmix/mpi_pmix.c \
--replace 'xstrfmtcat(full_path, "%s/", PMIXP_LIBPATH)' \
'xstrfmtcat(full_path, "${lib.getLib pmix}/lib/")'
2021-01-15 07:07:56 +00:00
'' + (lib.optionalString enableX11 ''
substituteInPlace src/common/x11_util.c \
--replace '"/usr/bin/xauth"' '"${xorg.xauth}/bin/xauth"'
'');
# nixos test fails to start slurmd with 'undefined symbol: slurm_job_preempt_mode'
# https://groups.google.com/forum/#!topic/slurm-devel/QHOajQ84_Es
# this doesn't fix tests completely at least makes slurmd to launch
hardeningDisable = [ "bindnow" ];
2022-07-04 11:36:04 +00:00
nativeBuildInputs = [ pkg-config libtool python3 perl ];
buildInputs = [
2022-07-04 11:36:04 +00:00
curl python3 munge pam
2022-07-29 21:20:51 +00:00
libmysqlclient ncurses lz4 rdma-core
2022-07-04 11:36:04 +00:00
lua hwloc numactl readline freeipmi shadow.su
pmix json_c libjwt libyaml dbus libbpf
http-parser
2022-07-29 21:20:51 +00:00
] ++ lib.optionals enableX11 [ xorg.xauth ]
++ lib.optionals enableGtk2 [ gtk2 ];
2015-02-28 17:11:13 +00:00
2021-01-15 07:07:56 +00:00
configureFlags = with lib;
[ "--with-freeipmi=${freeipmi}"
"--with-http-parser=${http-parser}"
2023-12-24 17:08:30 +00:00
"--with-hwloc=${lib.getDev hwloc}"
"--with-json=${lib.getDev json_c}"
"--with-jwt=${libjwt}"
2023-12-24 17:08:30 +00:00
"--with-lz4=${lib.getDev lz4}"
"--with-munge=${munge}"
2023-12-24 17:08:30 +00:00
"--with-yaml=${lib.getDev libyaml}"
"--with-ofed=${lib.getDev rdma-core}"
"--sysconfdir=/etc/slurm"
"--with-pmix=${lib.getDev pmix}"
2022-05-29 15:16:07 +00:00
"--with-bpf=${libbpf}"
"--without-rpath" # Required for configure to pick up the right dlopen path
2022-07-29 21:20:51 +00:00
] ++ (optional enableGtk2 "--disable-gtktest")
++ (optional (!enableX11) "--disable-x11");
2015-02-28 17:11:13 +00:00
preConfigure = ''
patchShebangs ./doc/html/shtml2html.py
patchShebangs ./doc/man/man2html.py
2015-02-28 17:11:13 +00:00
'';
postInstall = ''
rm -f $out/lib/*.la $out/lib/slurm/*.la
'';
enableParallelBuilding = true;
2020-06-10 12:37:20 +00:00
passthru.tests.slurm = nixosTests.slurm;
meta = with lib; {
homepage = "http://www.schedmd.com/";
2015-02-28 17:11:13 +00:00
description = "Simple Linux Utility for Resource Management";
platforms = platforms.linux;
2021-02-01 12:38:35 +00:00
license = licenses.gpl2Only;
2018-06-01 22:37:54 +00:00
maintainers = with maintainers; [ jagajaga markuskowa ];
2015-02-28 17:11:13 +00:00
};
}