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

89 lines
2.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkgconfig, libtool, curl
2020-03-03 10:07:20 +00:00
, python3, munge, perl, pam, zlib, shadow, coreutils
, ncurses, libmysqlclient, gtk2, lua, hwloc, numactl
, readline, freeipmi, xorg, lz4, rdma-core, nixosTests
2020-07-02 11:21:50 +00:00
, pmix
# enable internal X11 support via libssh2
, enableX11 ? true
}:
2015-02-28 17:11:13 +00:00
stdenv.mkDerivation rec {
pname = "slurm";
2020-12-27 01:48:57 +00:00
version = "20.11.2.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}";
2020-12-27 01:48:57 +00:00
sha256 = "02vz386ix28yr2lrn9z0hycqmw1d0npvwvx51fhp2mav66rrx79p";
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
2020-07-02 11:21:50 +00:00
# Required for configure to pick up the right dlopen path
./pmix-configure.patch
];
prePatch = ''
substituteInPlace src/common/env.c \
--replace "/bin/echo" "${coreutils}/bin/echo"
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" ];
2020-03-03 10:07:20 +00:00
nativeBuildInputs = [ pkgconfig libtool python3 ];
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
lua hwloc numactl readline freeipmi shadow.su
2020-07-02 11:21:50 +00: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;
[ "--with-freeipmi=${freeipmi}"
"--with-hwloc=${hwloc.dev}"
2018-10-06 21:04:04 +00:00
"--with-lz4=${lz4.dev}"
"--with-munge=${munge}"
2018-10-06 21:04:04 +00:00
"--with-zlib=${zlib}"
2020-02-10 11:24:11 +00:00
"--with-ofed=${rdma-core}"
"--sysconfdir=/etc/slurm"
2020-07-02 11:21:50 +00:00
"--with-pmix=${pmix}"
] ++ (optional (gtk2 == null) "--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;
license = licenses.gpl2;
2018-06-01 22:37:54 +00:00
maintainers = with maintainers; [ jagajaga markuskowa ];
2015-02-28 17:11:13 +00:00
};
}