diff options
author | Leo Famulari <leo@famulari.name> | 2017-11-08 19:10:01 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-11-08 19:32:31 -0500 |
commit | ea1f073d73f9122865368bfe5cfa96f978998541 (patch) | |
tree | e95adb85a8b98889fee482a258c40f6027512de7 /gnu/packages/parallel.scm | |
parent | a3dd13ae0e4ddd1d8e5e68f26786436cdba9be02 (diff) | |
download | patches-ea1f073d73f9122865368bfe5cfa96f978998541.tar patches-ea1f073d73f9122865368bfe5cfa96f978998541.tar.gz |
gnu: slurm: Update to 16.05.11 [fixes CVE-2017-15566].
* gnu/packages/parallel.scm (slurm): Update to 16.05.11.
[source]: Use the recommended download URL.
Diffstat (limited to 'gnu/packages/parallel.scm')
-rw-r--r-- | gnu/packages/parallel.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index ffdda102e9..bbed52544e 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm @@ -92,16 +92,15 @@ and they are executed on lists of files, hosts, users or other items.") (define-public slurm (package (name "slurm") - (version "16.05.9.1") + (version "16.05.11") (source (origin (method url-fetch) (uri (string-append - "https://github.com/SchedMD/slurm/archive/slurm-" - (string-join (string-split version #\.) "-") ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + "https://download.schedmd.com/slurm/slurm-" + version ".tar.bz2")) (sha256 (base32 - "1zx5y2lyjknnca4aw7cbawn00mjhsqzy3h35w7s757cykfjqr8gv")) + "0c63mvh13wsp6jlydaz98v35iwg53mk94ynpx9dqn2z4gl53k5y7")) (patches (search-patches "slurm-configure-remove-nonfree-contribs.patch")) (modules '((guix build utils))) |