mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-11-04 11:44:48 +00:00
25 lines
889 B
Scheme
25 lines
889 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)
|
|
((#:parallel-build? _ #f) #t)))
|
|
(properties '((disable-updater? . #t)))))
|