mirror of
				https://codeberg.org/hako/Rosenthal.git
				synced 2025-11-04 11:44:48 +00:00 
			
		
		
		
	rosenthal: Add bubblewrap-0.7.0.
* rosenthal/packages/virtualization.scm: New file. (bubblewrap-0.7.0): New variable.
This commit is contained in:
		
							parent
							
								
									145ebf94aa
								
							
						
					
					
						commit
						c062a2eecf
					
				
							
								
								
									
										25
									
								
								rosenthal/packages/virtualization.scm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								rosenthal/packages/virtualization.scm
									
									
									
									
									
										Normal file
									
								
							@ -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
	
	Block a user