mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: slurm: Add 21.08.8.
* gnu/packages/parallel.scm (slurm): Update to 21.08.8. (slurm-20.11): New variable.
This commit is contained in:
parent
c018871c04
commit
3d05105705
1 changed files with 18 additions and 3 deletions
|
@ -166,7 +166,7 @@ when jobs finish.")
|
||||||
(define-public slurm
|
(define-public slurm
|
||||||
(package
|
(package
|
||||||
(name "slurm")
|
(name "slurm")
|
||||||
(version "20.11.9")
|
(version "21.08.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -174,7 +174,7 @@ when jobs finish.")
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0xq2d6dm285y541dyg1h66z7svsisrq8c81ag0f601xz1cn3mq9m"))
|
"1sjln54idc9rhg8f2nvm38sgs6fncncyzslas8ixy65pqz2hphbf"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
@ -213,7 +213,8 @@ when jobs finish.")
|
||||||
#~(list "--enable-pam" "--sysconfdir=/etc/slurm"
|
#~(list "--enable-pam" "--sysconfdir=/etc/slurm"
|
||||||
"--disable-static"
|
"--disable-static"
|
||||||
(string-append "--with-freeipmi=" #$(this-package-input "freeipmi"))
|
(string-append "--with-freeipmi=" #$(this-package-input "freeipmi"))
|
||||||
(string-append "--with-hwloc=" #$(this-package-input "hwloc"))
|
(string-append "--with-hwloc="
|
||||||
|
(ungexp (this-package-input "hwloc") "lib"))
|
||||||
(string-append "--with-json=" #$(this-package-input "json-c"))
|
(string-append "--with-json=" #$(this-package-input "json-c"))
|
||||||
(string-append "--with-munge=" #$(this-package-input "munge"))
|
(string-append "--with-munge=" #$(this-package-input "munge"))
|
||||||
|
|
||||||
|
@ -261,6 +262,20 @@ by managing a queue of pending work.")
|
||||||
;; 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-20.11
|
||||||
|
(package
|
||||||
|
(inherit slurm)
|
||||||
|
(version "20.11.9")
|
||||||
|
(source (origin
|
||||||
|
(inherit (package-source slurm))
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://download.schedmd.com/slurm/slurm-"
|
||||||
|
version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0xq2d6dm285y541dyg1h66z7svsisrq8c81ag0f601xz1cn3mq9m"))))))
|
||||||
|
|
||||||
(define-public slurm-20.02
|
(define-public slurm-20.02
|
||||||
(package
|
(package
|
||||||
(inherit slurm)
|
(inherit slurm)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue