mirror of
				https://codeberg.org/hako/Rosenthal.git
				synced 2025-11-04 11:44:48 +00:00 
			
		
		
		
	* modules/rosenthal/packages/package-management.scm (guix/hako): Rename to... (guix/dolly): ...this and apply patches necessary for root on ZFS support.
		
			
				
	
	
		
			26 lines
		
	
	
		
			917 B
		
	
	
	
		
			Scheme
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			917 B
		
	
	
	
		
			Scheme
		
	
	
	
	
	
;;; SPDX-FileCopyrightText: 2022, 2025 Hilton Chain <hako@ultrarare.space>
 | 
						|
;;;
 | 
						|
;;; SPDX-License-Identifier: GPL-3.0-or-later
 | 
						|
 | 
						|
(define-module (rosenthal packages package-management)
 | 
						|
  #:use-module ((guix licenses) #:prefix license:)
 | 
						|
  #:use-module (guix gexp)
 | 
						|
  #:use-module (guix packages)
 | 
						|
  #:use-module (guix utils)
 | 
						|
  #:use-module (rosenthal utils packages)
 | 
						|
  #:use-module (gnu packages package-management))
 | 
						|
 | 
						|
(define-public guix/dolly
 | 
						|
  (package
 | 
						|
    (inherit
 | 
						|
     (package-with-extra-patches guix
 | 
						|
       (rosenthal-patches "guix-change-publish-cache-storage.patch"
 | 
						|
                          "guix-allow-out-of-tree-modules-in-initrd.patch"
 | 
						|
                          "guix-wip-zfs-boot-support.patch")))
 | 
						|
    (name "guix-dolly")
 | 
						|
    (arguments
 | 
						|
     (substitute-keyword-arguments (package-arguments guix)
 | 
						|
       ((#:tests? _ #t) #f)
 | 
						|
       ((#:parallel-build? _ #f) #t)))
 | 
						|
    (properties '((disable-updater? . #t)))))
 |