2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libtool, curl
|
2020-03-03 10:07:20 +00:00
|
|
|
, python3, munge, perl, pam, zlib, shadow, coreutils
|
2019-09-22 08:38:09 +01:00
|
|
|
, ncurses, libmysqlclient, gtk2, lua, hwloc, numactl
|
2020-06-22 12:14:21 +01:00
|
|
|
, readline, freeipmi, xorg, lz4, rdma-core, nixosTests
|
2020-07-02 12:21:50 +01:00
|
|
|
, pmix
|
2018-05-26 10:51:45 +01:00
|
|
|
# enable internal X11 support via libssh2
|
|
|
|
, enableX11 ? true
|
2016-05-27 22:01:16 +01:00
|
|
|
}:
|
2015-02-28 17:11:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "slurm";
|
2021-09-17 23:50:47 +01:00
|
|
|
version = "21.08.1.1";
|
2015-02-28 17:11:13 +00:00
|
|
|
|
2018-06-25 13:58:04 +01: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 12:37:23 +01:00
|
|
|
# The release tags use - instead of .
|
2019-08-17 08:39:23 +01:00
|
|
|
rev = "${pname}-${builtins.replaceStrings ["."] ["-"] version}";
|
2021-09-17 23:50:47 +01:00
|
|
|
sha256 = "13fd72ifa1ar8yjavdywzvlk4fzxzhybi30pzcdvjnijc9y52j4m";
|
2015-02-28 17:11:13 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-05-28 00:29:42 +01:00
|
|
|
|
2020-06-23 12:08:55 +01:00
|
|
|
patches = [
|
|
|
|
# increase string length to allow for full
|
|
|
|
# path of 'echo' in nix store
|
|
|
|
./common-env-echo.patch
|
2020-07-02 12:21:50 +01:00
|
|
|
# Required for configure to pick up the right dlopen path
|
|
|
|
./pmix-configure.patch
|
2020-06-23 12:08:55 +01:00
|
|
|
];
|
|
|
|
|
2020-06-10 09:55:05 +01:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace src/common/env.c \
|
|
|
|
--replace "/bin/echo" "${coreutils}/bin/echo"
|
2021-01-15 07:07:56 +00:00
|
|
|
'' + (lib.optionalString enableX11 ''
|
2018-05-26 10:51:45 +01:00
|
|
|
substituteInPlace src/common/x11_util.c \
|
|
|
|
--replace '"/usr/bin/xauth"' '"${xorg.xauth}/bin/xauth"'
|
2020-06-10 09:55:05 +01:00
|
|
|
'');
|
2018-05-26 10:51:45 +01:00
|
|
|
|
2017-07-13 02:35:54 +01:00
|
|
|
# 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" ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libtool python3 ];
|
2016-05-27 22:01:16 +01:00
|
|
|
buildInputs = [
|
2020-03-03 10:07:20 +00:00
|
|
|
curl python3 munge perl pam zlib
|
2020-02-10 11:24:11 +00:00
|
|
|
libmysqlclient ncurses gtk2 lz4 rdma-core
|
2020-06-10 09:55:05 +01:00
|
|
|
lua hwloc numactl readline freeipmi shadow.su
|
2020-07-02 12:21:50 +01:00
|
|
|
pmix
|
2021-01-15 07:07:56 +00:00
|
|
|
] ++ lib.optionals enableX11 [ xorg.xauth ];
|
2015-02-28 17:11:13 +00:00
|
|
|
|
2021-01-15 07:07:56 +00:00
|
|
|
configureFlags = with lib;
|
2018-10-05 18:00:20 +01:00
|
|
|
[ "--with-freeipmi=${freeipmi}"
|
2018-05-26 10:51:45 +01:00
|
|
|
"--with-hwloc=${hwloc.dev}"
|
2018-10-06 22:04:04 +01:00
|
|
|
"--with-lz4=${lz4.dev}"
|
2018-10-05 18:00:20 +01:00
|
|
|
"--with-munge=${munge}"
|
2018-10-06 22:04:04 +01:00
|
|
|
"--with-zlib=${zlib}"
|
2020-02-10 11:24:11 +00:00
|
|
|
"--with-ofed=${rdma-core}"
|
2016-05-27 22:01:16 +01:00
|
|
|
"--sysconfdir=/etc/slurm"
|
2020-07-02 12:21:50 +01:00
|
|
|
"--with-pmix=${pmix}"
|
2018-05-26 10:51:45 +01:00
|
|
|
] ++ (optional (gtk2 == null) "--disable-gtktest")
|
2019-11-05 21:00:23 +00:00
|
|
|
++ (optional (!enableX11) "--disable-x11");
|
2018-05-26 10:51:45 +01:00
|
|
|
|
2015-02-28 17:11:13 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2017-07-13 02:35:54 +01:00
|
|
|
patchShebangs ./doc/html/shtml2html.py
|
|
|
|
patchShebangs ./doc/man/man2html.py
|
2015-02-28 17:11:13 +00:00
|
|
|
'';
|
|
|
|
|
2016-05-27 22:01:16 +01:00
|
|
|
postInstall = ''
|
|
|
|
rm -f $out/lib/*.la $out/lib/slurm/*.la
|
|
|
|
'';
|
|
|
|
|
2017-12-15 20:33:06 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-06-10 13:37:20 +01:00
|
|
|
passthru.tests.slurm = nixosTests.slurm;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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 23:37:54 +01:00
|
|
|
maintainers = with maintainers; [ jagajaga markuskowa ];
|
2015-02-28 17:11:13 +00:00
|
|
|
};
|
|
|
|
}
|