2017-07-13 03:35:54 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, curl, python, munge, perl, pam, openssl
|
2016-09-11 23:24:51 +02:00
|
|
|
, ncurses, mysql, gtk2, lua, hwloc, numactl
|
2016-05-27 23:01:16 +02:00
|
|
|
}:
|
2015-02-28 18:11:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-07-13 03:35:54 +02:00
|
|
|
name = "slurm-${version}";
|
2018-03-29 18:14:56 +02:00
|
|
|
version = "17.11.5";
|
2015-02-28 18:11:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-12-15 21:33:06 +01:00
|
|
|
url = "https://download.schedmd.com/slurm/${name}.tar.bz2";
|
2018-03-29 18:14:56 +02:00
|
|
|
sha256 = "07ghyyz12k4rksm06xf7dshwp1ndm13zphdbqja99401q4xwbx9r";
|
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
|
|
|
|
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" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
2016-05-27 23:01:16 +02:00
|
|
|
buildInputs = [
|
2017-07-14 15:03:47 +02:00
|
|
|
curl python munge perl pam openssl mysql.connector-c ncurses gtk2 lua hwloc numactl
|
2016-05-27 23:01:16 +02:00
|
|
|
];
|
2015-02-28 18:11:13 +01:00
|
|
|
|
2015-12-19 02:07:09 +01:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-munge=${munge}"
|
2016-04-16 19:44:32 +02:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2016-05-27 23:01:16 +02:00
|
|
|
"--sysconfdir=/etc/slurm"
|
2016-09-11 23:24:51 +02:00
|
|
|
] ++ stdenv.lib.optional (gtk2 == null) "--disable-gtktest";
|
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;
|
|
|
|
|
2015-02-28 18:11:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.schedmd.com/;
|
|
|
|
description = "Simple Linux Utility for Resource Management";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.jagajaga ];
|
|
|
|
};
|
|
|
|
}
|