2018-06-25 13:58:04 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, libtool, curl
|
2018-10-06 22:04:04 +01:00
|
|
|
, python, munge, perl, pam, openssl, zlib
|
2019-09-22 08:38:09 +01:00
|
|
|
, ncurses, libmysqlclient, gtk2, lua, hwloc, numactl
|
2020-02-10 11:24:11 +00:00
|
|
|
, readline, freeipmi, libssh2, xorg, lz4, rdma-core
|
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";
|
2019-12-24 18:06:24 +00:00
|
|
|
version = "19.05.5.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}";
|
2019-12-24 18:06:24 +00:00
|
|
|
sha256 = "0f0gv3sirp6sxdrbwydsbcqicjbmrpm58yhgbsar8v6nx3g6y3hx";
|
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
|
|
|
|
2018-05-26 10:51:45 +01:00
|
|
|
prePatch = stdenv.lib.optional enableX11 ''
|
|
|
|
substituteInPlace src/common/x11_util.c \
|
|
|
|
--replace '"/usr/bin/xauth"' '"${xorg.xauth}/bin/xauth"'
|
|
|
|
'';
|
|
|
|
|
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" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
2016-05-27 22:01:16 +01:00
|
|
|
buildInputs = [
|
2018-10-06 22:04:04 +01:00
|
|
|
curl python munge perl pam openssl zlib
|
2020-02-10 11:24:11 +00:00
|
|
|
libmysqlclient ncurses gtk2 lz4 rdma-core
|
2018-05-26 10:51:45 +01:00
|
|
|
lua hwloc numactl readline freeipmi
|
|
|
|
] ++ stdenv.lib.optionals enableX11 [ libssh2 xorg.xauth ];
|
2015-02-28 17:11:13 +00:00
|
|
|
|
2018-05-26 10:51:45 +01:00
|
|
|
configureFlags = with stdenv.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}"
|
|
|
|
"--with-ssl=${openssl.dev}"
|
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"
|
2018-05-26 10:51:45 +01:00
|
|
|
] ++ (optional (gtk2 == null) "--disable-gtktest")
|
2019-11-05 21:00:23 +00:00
|
|
|
++ (optional enableX11 "--with-libssh2=${libssh2.dev}")
|
|
|
|
++ (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;
|
|
|
|
|
2015-02-28 17:11:13 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.schedmd.com/;
|
|
|
|
description = "Simple Linux Utility for Resource Management";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2018-06-01 23:37:54 +01:00
|
|
|
maintainers = with maintainers; [ jagajaga markuskowa ];
|
2015-02-28 17:11:13 +00:00
|
|
|
};
|
|
|
|
}
|