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

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, curl, python, munge, perl, pam, openssl
, ncurses, mysql, gtk, lua, hwloc, numactl
}:
2015-02-28 17:11:13 +00:00
stdenv.mkDerivation rec {
name = "slurm-llnl-${version}";
version = "15-08-5-1";
2015-02-28 17:11:13 +00:00
src = fetchurl {
2015-12-15 01:22:00 +00:00
url = "https://github.com/SchedMD/slurm/archive/slurm-${version}.tar.gz";
sha256 = "05si1cn7zivggan25brsqfdw0ilvrlnhj96pwv16dh6vfkggzjr1";
2015-02-28 17:11:13 +00:00
};
buildInputs = [
pkgconfig curl python munge perl pam openssl mysql.lib ncurses gtk 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 (gtk == null) "--disable-gtktest";
2015-02-28 17:11:13 +00:00
preConfigure = ''
substituteInPlace ./doc/html/shtml2html.py --replace "/usr/bin/env python" "${python.interpreter}"
substituteInPlace ./doc/man/man2html.py --replace "/usr/bin/env python" "${python.interpreter}"
'';
postInstall = ''
rm -f $out/lib/*.la $out/lib/slurm/*.la
'';
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 ];
};
}