mirror of https://codeberg.org/hako/Rosenthal.git
* rosenthal/packages/virtualization.scm: New file. (bubblewrap-0.7.0): New variable.wip/index/refs/heads/trunk
parent
145ebf94aa
commit
c062a2eecf
1 changed files with 25 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||||
|
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space> |
||||||
|
;; |
||||||
|
;; SPDX-License-Identifier: GPL-3.0-or-later |
||||||
|
|
||||||
|
(define-module (rosenthal packages virtualization) |
||||||
|
#:use-module (guix download) |
||||||
|
#:use-module (guix packages) |
||||||
|
#:use-module (gnu packages virtualization)) |
||||||
|
|
||||||
|
;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59114 |
||||||
|
(define-public bubblewrap-0.7.0 |
||||||
|
(let ((base bubblewrap)) |
||||||
|
(package |
||||||
|
(inherit base) |
||||||
|
(name "bubblewrap") |
||||||
|
(version "0.7.0") |
||||||
|
(source (origin |
||||||
|
(inherit (package-source base)) |
||||||
|
(method url-fetch) |
||||||
|
(uri (string-append "https://github.com/containers/bubblewrap/" |
||||||
|
"releases/download/v" version |
||||||
|
"/bubblewrap-" version ".tar.xz")) |
||||||
|
(sha256 |
||||||
|
(base32 |
||||||
|
"1p59hawgpf16mc01ybf6dfb2b96pk7h65ls0si9yldyh1c8bfjkn"))))))) |
Loading…
Reference in new issue