mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-09-18 20:54:37 +00:00
* modules/rosenthal/packages/patches/guix-change-publish-cache-storage.patch: New file. * modules/rosenthal/packages/package-management.scm (guix/hako): New variable.
24 lines
780 B
Scheme
24 lines
780 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/hako
|
|
(package
|
|
(inherit
|
|
(package-with-extra-patches guix
|
|
(rosenthal-patches "guix-change-publish-cache-storage.patch")))
|
|
(name "guix-hako")
|
|
(arguments
|
|
(substitute-keyword-arguments (package-arguments guix)
|
|
((#:tests? _ #t) #f)
|
|
((#:parallel-build? _ #f) #t)))
|
|
(properties '((disable-updater? . #t)))))
|