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.master
parent
78ee6dcfe1
commit
7e0ad0dd0f
|
@ -580,7 +580,7 @@ runcexecutor/executor.go"
|
||||||
util-linux
|
util-linux
|
||||||
lvm2
|
lvm2
|
||||||
tini
|
tini
|
||||||
xfsprogs
|
xfsprogs-5.9
|
||||||
xz))
|
xz))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list eudev ; TODO: Should be propagated by lvm2 (.pc -> .pc)
|
(list eudev ; TODO: Should be propagated by lvm2 (.pc -> .pc)
|
||||||
|
|
|
@ -8550,6 +8550,20 @@ file systems.")
|
||||||
;; licensed under lgpl2.1. the other stuff is licensed under gpl2.
|
;; licensed under lgpl2.1. the other stuff is licensed under gpl2.
|
||||||
(license (list license:gpl2 license:lgpl2.1))))
|
(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
|
(define-public xfsprogs/static
|
||||||
(package
|
(package
|
||||||
(inherit xfsprogs)
|
(inherit xfsprogs)
|
||||||
|
|
Reference in New Issue