3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/computing/slurm/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libtool, curl, python, munge, perl, pam, openssl
, ncurses, mysql, gtk2, lua, hwloc, numactl
}:
2015-02-28 17:11:13 +00:00
stdenv.mkDerivation rec {
name = "slurm-${version}";
version = "17.02.9";
2015-02-28 17:11:13 +00:00
src = fetchurl {
url = "https://download.schedmd.com/slurm/${name}.tar.bz2";
sha256 = "0w8v7fzbn7b3f9kg6lcj2jpkzln3vcv9s2cz37xbdifz0m2p1x7s";
2015-02-28 17:11:13 +00:00
};
outputs = [ "out" "dev" ];
2016-05-28 00:29:42 +01: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 ];
buildInputs = [
2017-07-14 14:03:47 +01:00
curl python munge perl pam openssl mysql.connector-c ncurses gtk2 lua hwloc numactl
];
2015-02-28 17:11:13 +00:00
configureFlags =
[ "--with-munge=${munge}"
"--with-ssl=${openssl.dev}"
"--sysconfdir=/etc/slurm"
] ++ stdenv.lib.optional (gtk2 == null) "--disable-gtktest";
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;
2015-02-28 17:11:13 +00: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 ];
};
}