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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

100 lines
2.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, libtool, curl
2022-05-29 15:16:07 +00:00
, python3, munge, perl, pam, shadow, coreutils, dbus, libbpf
2022-07-29 21:20:51 +00:00
, ncurses, libmysqlclient, lua, hwloc, numactl
, readline, freeipmi, xorg, lz4, rdma-core, nixosTests
2020-07-02 11:21:50 +00:00
, pmix
, libjwt
, libyaml
, json_c
, http-parser
# enable internal X11 support via libssh2
, enableX11 ? true
2022-07-29 21:20:51 +00:00
, enableGtk2 ? false, gtk2
}:
2015-02-28 17:11:13 +00:00
stdenv.mkDerivation rec {
pname = "slurm";
version = "22.05.6.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}";
sha256 = "1aa1ddlacr9dpk1g1syj9ml5dninv3dzvw8vlm1s3j3ybp6lz8bd";
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" ];
2022-07-04 11:36:04 +00:00
nativeBuildInputs = [ pkg-config libtool python3 perl ];
buildInputs = [
2022-07-04 11:36:04 +00:00
curl python3 munge pam
2022-07-29 21:20:51 +00:00
libmysqlclient ncurses lz4 rdma-core
2022-07-04 11:36:04 +00:00
lua hwloc numactl readline freeipmi shadow.su
pmix json_c libjwt libyaml dbus libbpf
http-parser
2022-07-29 21:20:51 +00:00
] ++ lib.optionals enableX11 [ xorg.xauth ]
++ lib.optionals enableGtk2 [ gtk2 ];
2015-02-28 17:11:13 +00:00
2021-01-15 07:07:56 +00:00
configureFlags = with lib;
[ "--with-freeipmi=${freeipmi}"
"--with-http-parser=${http-parser}"
"--with-hwloc=${hwloc.dev}"
"--with-json=${json_c.dev}"
"--with-jwt=${libjwt}"
2018-10-06 21:04:04 +00:00
"--with-lz4=${lz4.dev}"
"--with-munge=${munge}"
"--with-yaml=${libyaml}"
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}"
2022-05-29 15:16:07 +00:00
"--with-bpf=${libbpf}"
2022-07-29 21:20:51 +00:00
] ++ (optional enableGtk2 "--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;
2021-02-01 12:38:35 +00:00
license = licenses.gpl2Only;
2018-06-01 22:37:54 +00:00
maintainers = with maintainers; [ jagajaga markuskowa ];
2015-02-28 17:11:13 +00:00
};
}