gnu: slurm: Add old 20.02 version back.

* gnu/packages/parallel.scm (slurm-20.02): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Vincent Legoll 2021-01-05 09:32:21 +01:00 committed by Ludovic Courtès
parent 069bb95ab2
commit c356c751e2
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -195,6 +195,21 @@ (define-public slurm
;; <https://slurm.schedmd.com/troubleshoot.html#network>. Thus, keep older
;; releases here. See also <https://issues.guix.gnu.org/44387>.
(define-public slurm-20.02
(package
(inherit slurm)
(version "20.02.6-1")
(source (origin
(inherit (package-source slurm))
(method url-fetch)
(uri (string-append
"https://download.schedmd.com/slurm/slurm-"
version ".tar.bz2"))
(sha256
(base32
"0qj4blfymrd2ry2qmb58l3jbr4jwygc3adcfw7my27rippcijlyc"))))))
(define-public slurm-19.05
(package
(inherit slurm)