gnu: bubblewrap: Update to 0.3.3.
* gnu/packages/virtualization.scm (bubblewrap): Update to 0.3.3. [arguments]: Adjust test substitutions.
This commit is contained in:
parent
18b3ba6ff2
commit
2d03201aab
|
@ -1024,7 +1024,7 @@ virtual machines.")
|
||||||
(define-public bubblewrap
|
(define-public bubblewrap
|
||||||
(package
|
(package
|
||||||
(name "bubblewrap")
|
(name "bubblewrap")
|
||||||
(version "0.3.1")
|
(version "0.3.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/projectatomic/bubblewrap/"
|
(uri (string-append "https://github.com/projectatomic/bubblewrap/"
|
||||||
|
@ -1032,7 +1032,7 @@ virtual machines.")
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1y2bdlxnlr84xcbf31lzirc292c5ak9bd2wvcvh4ppsliih6pjny"))))
|
"1zsd6rxryg97dkkhibr0fvq16x3s75qj84rvhdv8p42ag58mz966"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -1052,6 +1052,9 @@ virtual machines.")
|
||||||
;; Some tests try to access /usr, but that doesn't exist.
|
;; Some tests try to access /usr, but that doesn't exist.
|
||||||
;; Give them /gnu instead.
|
;; Give them /gnu instead.
|
||||||
(("/usr") "/gnu")
|
(("/usr") "/gnu")
|
||||||
|
(("--ro-bind /bin /bin") "--ro-bind /gnu /bin")
|
||||||
|
(("--ro-bind /sbin /sbin") "--ro-bind /gnu /sbin")
|
||||||
|
(("--ro-bind /lib /lib") "--ro-bind /gnu /lib")
|
||||||
((" */bin/bash") (which "bash"))
|
((" */bin/bash") (which "bash"))
|
||||||
(("/bin/sh") (which "sh"))
|
(("/bin/sh") (which "sh"))
|
||||||
(("findmnt") (which "findmnt"))))
|
(("findmnt") (which "findmnt"))))
|
||||||
|
|
Loading…
Reference in New Issue