mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: slurm: Reintroduce version 19.05.
Partly fixes <https://bugs.gnu.org/44387>. * gnu/packages/parallel.scm (slurm-19.05): New variable.
This commit is contained in:
parent
c73496f433
commit
e1bd62eb5c
1 changed files with 20 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -190,6 +190,25 @@ (define-public slurm
|
||||||
license:zlib ; src/common/strnatcmp.c
|
license:zlib ; src/common/strnatcmp.c
|
||||||
license:gpl2+)))) ; the rest, often with OpenSSL exception
|
license:gpl2+)))) ; the rest, often with OpenSSL exception
|
||||||
|
|
||||||
|
;; The SLURM client/daemon protocol and file format changes from time to time
|
||||||
|
;; in incompatible ways, as noted in
|
||||||
|
;; <https://slurm.schedmd.com/troubleshoot.html#network>. Thus, keep older
|
||||||
|
;; releases here. See also <https://issues.guix.gnu.org/44387>.
|
||||||
|
|
||||||
|
(define-public slurm-19.05
|
||||||
|
(package
|
||||||
|
(inherit slurm)
|
||||||
|
(version "19.05.3-2")
|
||||||
|
(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-drmaa
|
(define-public slurm-drmaa
|
||||||
(package
|
(package
|
||||||
(name "slurm-drmaa")
|
(name "slurm-drmaa")
|
||||||
|
|
Loading…
Reference in a new issue