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
|
2016-09-11 22:24:51 +01:00
|
|
|
, ncurses, mysql, gtk2, lua, hwloc, numactl
|
2018-10-05 18:00:20 +01:00
|
|
|
, readline, freeipmi, libssh2, xorg, lz4
|
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 {
|
2017-07-13 02:35:54 +01:00
|
|
|
name = "slurm-${version}";
|
2019-07-16 20:08:24 +01:00
|
|
|
version = "19.05.1.2";
|
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 .
|
|
|
|
rev = "${builtins.replaceStrings ["."] ["-"] name}";
|
2019-07-16 20:08:24 +01:00
|
|
|
sha256 = "1r2hxfshz929fcys90rmnj8s7f204q364m6bazhiy8hhm3bsf42k";
|
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
|
2018-10-05 18:00:20 +01:00
|
|
|
mysql.connector-c ncurses gtk2 lz4
|
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}"
|
2016-05-27 22:01:16 +01:00
|
|
|
"--sysconfdir=/etc/slurm"
|
2018-05-26 10:51:45 +01:00
|
|
|
] ++ (optional (gtk2 == null) "--disable-gtktest")
|
|
|
|
++ (optional enableX11 "--with-libssh2=${libssh2.dev}");
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|