formatting

This commit is contained in:
Jean-François GUILLAUME 2021-12-03 10:35:51 +01:00
parent a5b5e6d9d6
commit e30fa0129d
GPG key ID: 38751DAE145EFB5A
4 changed files with 193 additions and 203 deletions

View file

@ -1,29 +1,23 @@
(define-module (glicid packages fabric-management)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module ((gnu packages fabric-management) #:prefix gnu:)
)
(define-public ucx-newer-1.11.2
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-newer" ))
(version "1.11.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))
)
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-newer" ))
(version "1.11.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))
)
)
)
)
)
(define local-ucx ucx-newer-1.11.2)
(define-public ucx-latest local-ucx) ;; for now
;;; glicid/fabric-management.scm ends here
(define-public ucx-latest local-ucx)