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