mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: docker: Fix tests.
Fixes <https://issues.guix.gnu.org/59551>. Reported by Edison Ibáñez <arkhan@riseup.net> * gnu/packages/linux.scm (xfsprogs-5.9): New variable. * gnu/packages/docker.scm (docker)[inputs]: Replace xfsprogs by xfsprogs-5.9.
This commit is contained in:
parent
78ee6dcfe1
commit
7e0ad0dd0f
2 changed files with 15 additions and 1 deletions
|
@ -580,7 +580,7 @@ (define-public docker
|
|||
util-linux
|
||||
lvm2
|
||||
tini
|
||||
xfsprogs
|
||||
xfsprogs-5.9
|
||||
xz))
|
||||
(native-inputs
|
||||
(list eudev ; TODO: Should be propagated by lvm2 (.pc -> .pc)
|
||||
|
|
|
@ -8550,6 +8550,20 @@ (define-public xfsprogs
|
|||
;; licensed under lgpl2.1. the other stuff is licensed under gpl2.
|
||||
(license (list license:gpl2 license:lgpl2.1))))
|
||||
|
||||
(define-public xfsprogs-5.9
|
||||
(package
|
||||
(inherit xfsprogs)
|
||||
(name "xfsprogs")
|
||||
(version "5.9.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://kernel.org/linux/utils/fs/xfs/xfsprogs/"
|
||||
"xfsprogs-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"13xkn9jpmwp4fm9r68vhgznkmxhnv83n2b39mhy2qdaph90w2a1l"))))))
|
||||
|
||||
(define-public xfsprogs/static
|
||||
(package
|
||||
(inherit xfsprogs)
|
||||
|
|
Loading…
Reference in a new issue