summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/computing
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-06-25 08:58:04 -0400
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-25 14:58:04 +0200
commit39f357a83649d742dbde23558cda0fdb09d3c306 (patch)
tree7b810e1067e40513142ba1a4574369728c0f0b66 /pkgs/servers/computing
parent0463c2020e065368fafcca95954ae32bbbdec2e0 (diff)
slurm: 17.11.5 -> 17.11.7, pyslurm: 20180427 -> 20180604 (#42536)
* slurm: 17.11.5 -> 17.11.7, pyslurm: 20180427 -> 20180604 This commit also swaps to use the official repository's github release tags instead of their download site, which only keeps the most recent version with no historical archives. * Document why we don't run tests * Remove dead testing code
Diffstat (limited to 'pkgs/servers/computing')
-rw-r--r--pkgs/servers/computing/slurm/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix
index 7a03bf75802b..64e4005f53f3 100644
--- a/pkgs/servers/computing/slurm/default.nix
+++ b/pkgs/servers/computing/slurm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, libtool, curl
+{ stdenv, fetchFromGitHub, pkgconfig, libtool, curl
, python, munge, perl, pam, openssl
, ncurses, mysql, gtk2, lua, hwloc, numactl
, readline, freeipmi, libssh2, xorg
@@ -8,11 +8,16 @@
stdenv.mkDerivation rec {
name = "slurm-${version}";
- version = "17.11.5";
+ version = "17.11.7";
- src = fetchurl {
- url = "https://download.schedmd.com/slurm/${name}.tar.bz2";
- sha256 = "07ghyyz12k4rksm06xf7dshwp1ndm13zphdbqja99401q4xwbx9r";
+ # 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 ., and have an extra -1 suffix.
+ rev = "${builtins.replaceStrings ["."] ["-"] name}-1";
+ sha256 = "00dgirjd75i1x6pj80avp18hx5gr3dsnh13vbkqbf0iwpd72qyhp";
};
outputs = [ "out" "dev" ];