bscpkgs/pkgs/slurm/default.nix

81 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, pkg-config, libtool, curl
2020-08-05 16:57:05 +08:00
, python, munge, perl, pam, openssl
, ncurses, libmysqlclient, gtk2, lua, hwloc, numactl
, readline, freeipmi, libssh2, xorg
2020-08-05 23:44:03 +08:00
, pmix
2020-08-05 16:57:05 +08:00
# enable internal X11 support via libssh2
, enableX11 ? true
}:
stdenv.mkDerivation rec {
name = "slurm-${version}";
version = "17.11.9-2";
# 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";
# The release tags use - instead of .
rev = "${builtins.replaceStrings ["."] ["-"] name}";
sha256 = "1lq4ac6yjai6wh979dciw8v3d99zbd3w36rfh0vpncqm672fg1qy";
};
outputs = [ "out" "dev" ];
2022-09-01 22:27:29 +08:00
prePatch = lib.optional enableX11 ''
2020-08-05 16:57:05 +08:00
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" ];
nativeBuildInputs = [ pkg-config libtool ];
2020-08-05 16:57:05 +08:00
buildInputs = [
curl python munge perl pam openssl
libmysqlclient ncurses gtk2
lua hwloc numactl readline freeipmi
2020-08-05 23:44:03 +08:00
pmix
2022-09-01 22:27:29 +08:00
] ++ lib.optionals enableX11 [ libssh2 xorg.xauth ];
2020-08-05 16:57:05 +08:00
2022-09-01 22:27:29 +08:00
configureFlags = with lib;
2020-08-05 16:57:05 +08:00
[ "--with-munge=${munge}"
"--with-ssl=${openssl.dev}"
"--with-hwloc=${hwloc.dev}"
"--with-freeipmi=${freeipmi}"
"--sysconfdir=/etc/slurm"
2020-08-05 23:44:03 +08:00
"--with-pmix=${pmix}"
2020-08-05 16:57:05 +08:00
] ++ (optional (gtk2 == null) "--disable-gtktest")
++ (optional enableX11 "--with-libssh2=${libssh2.dev}");
preConfigure = ''
patchShebangs ./doc/html/shtml2html.py
patchShebangs ./doc/man/man2html.py
2020-08-05 23:44:03 +08:00
patchShebangs ./configure
2020-08-05 16:57:05 +08:00
'';
2020-08-18 00:55:01 +08:00
# postBuild = ''
# pushd contrib/pmi2
# make -j install
# popd
# '';
2020-08-05 16:57:05 +08:00
postInstall = ''
rm -f $out/lib/*.la $out/lib/slurm/*.la
'';
enableParallelBuilding = true;
2022-09-01 22:27:29 +08:00
meta = with lib; {
2020-08-05 16:57:05 +08:00
homepage = http://www.schedmd.com/;
description = "Simple Linux Utility for Resource Management";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ jagajaga markuskowa ];
};
}