mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: slurm: Update to 22.05.1.
* gnu/packages/parallel.scm (slurm): Update to 22.05.1. (slurm-21.08): New variable.
This commit is contained in:
parent
887b23a73c
commit
8a04ac4b2f
1 changed files with 16 additions and 2 deletions
|
@ -166,7 +166,7 @@ (define-public xjobs
|
||||||
(define-public slurm
|
(define-public slurm
|
||||||
(package
|
(package
|
||||||
(name "slurm")
|
(name "slurm")
|
||||||
(version "21.08.8")
|
(version "22.05.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -174,7 +174,7 @@ (define-public slurm
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1sjln54idc9rhg8f2nvm38sgs6fncncyzslas8ixy65pqz2hphbf"))
|
"0f3hhlki8g7slllsnyj1qikbsvr62i0hig85lcdcfnmsagzlhbyi"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
@ -262,6 +262,20 @@ (define-public slurm
|
||||||
;; As noted in the link, YY.MM is the release scheme, and the 'maintenance'
|
;; As noted in the link, YY.MM is the release scheme, and the 'maintenance'
|
||||||
;; digit does not introduce incompatibilities.
|
;; digit does not introduce incompatibilities.
|
||||||
|
|
||||||
|
(define-public slurm-21.08
|
||||||
|
(package
|
||||||
|
(inherit slurm)
|
||||||
|
(version "21.08.8")
|
||||||
|
(source (origin
|
||||||
|
(inherit (package-source slurm))
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://download.schedmd.com/slurm/slurm-"
|
||||||
|
version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1sjln54idc9rhg8f2nvm38sgs6fncncyzslas8ixy65pqz2hphbf"))))))
|
||||||
|
|
||||||
(define-public slurm-20.11
|
(define-public slurm-20.11
|
||||||
(package
|
(package
|
||||||
(inherit slurm)
|
(inherit slurm)
|
||||||
|
|
Loading…
Reference in a new issue