mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: slurm-drmaa: Update to 1.1.1.
* gnu/packages/parallel.scm (slurm-drmaa): Update to 1.1.1.
This commit is contained in:
parent
657b60725c
commit
a7dff9553c
1 changed files with 8 additions and 5 deletions
|
@ -10,6 +10,7 @@
|
|||
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2020 Roel Janssen <roel@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -192,20 +193,22 @@ (define-public slurm
|
|||
(define-public slurm-drmaa
|
||||
(package
|
||||
(name "slurm-drmaa")
|
||||
(version "1.0.7")
|
||||
(version "1.1.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri "http://apps.man.poznan.pl/trac/slurm-drmaa/downloads/9")
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(uri (string-append
|
||||
"https://github.com/natefoo/slurm-drmaa/releases/download/"
|
||||
version "/slurm-drmaa-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0grw55hmny2mc4nc0y1arnvxd2k0dcdfn476kzs180fibjxgfw14"))))
|
||||
"19r4cm88pcpm3wli4cc61zq7354pg67cg866f3a430p15hm1knrn"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments `(#:tests? #f)) ; The tests require "bats".
|
||||
(inputs
|
||||
`(("slurm" ,slurm)))
|
||||
(native-inputs
|
||||
`(("which" ,which)))
|
||||
(home-page "http://apps.man.poznan.pl/trac/slurm-drmaa")
|
||||
(home-page "https://github.com/natefoo/slurm-drmaa")
|
||||
(synopsis "Distributed resource management application API for SLURM")
|
||||
(description
|
||||
"PSNC DRMAA for Simple Linux Utility for Resource Management (SLURM) is
|
||||
|
|
Loading…
Reference in a new issue