mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-03-26 03:34:20 +00:00
rosenthal: Reference the inherited arguments and inputs values.
Following upstream change in
6b1a15189e
These references are found via:
rg '\(package-(arguments|[a-z]*-?inputs)'
No derivation changes are introduced by this commit.
This commit is contained in:
parent
af150b1f65
commit
794db4f702
@ -59,17 +59,16 @@ the user to manage services with dependencies and parallel startup.")
|
|||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public libseat-sans-logind
|
(define-public libseat-sans-logind
|
||||||
(let ((base libseat))
|
|
||||||
(package
|
(package
|
||||||
(inherit base)
|
(inherit libseat)
|
||||||
(name "libseat-sans-logind")
|
(name "libseat-sans-logind")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments arguments
|
||||||
((#:configure-flags configure-flags)
|
((#:configure-flags configure-flags)
|
||||||
#~(append #$configure-flags
|
#~(append #$configure-flags
|
||||||
(list "-Dlibseat-logind=disabled")))))
|
(list "-Dlibseat-logind=disabled")))))
|
||||||
(propagated-inputs '())
|
(propagated-inputs '())
|
||||||
(properties '((disable-updater? . #t))))))
|
(properties '((disable-updater? . #t)))))
|
||||||
|
|
||||||
(define-public pam-dumb-runtime-dir
|
(define-public pam-dumb-runtime-dir
|
||||||
(package
|
(package
|
||||||
@ -109,14 +108,13 @@ exists and is only writable by root.")
|
|||||||
(license license:bsd-0)))
|
(license license:bsd-0)))
|
||||||
|
|
||||||
(define-public seatd-sans-logind
|
(define-public seatd-sans-logind
|
||||||
(let ((base seatd))
|
|
||||||
(package
|
(package
|
||||||
(inherit base)
|
(inherit seatd)
|
||||||
(name "seatd-sans-logind")
|
(name "seatd-sans-logind")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments arguments
|
||||||
((#:configure-flags configure-flags)
|
((#:configure-flags configure-flags)
|
||||||
#~(append #$configure-flags
|
#~(append #$configure-flags
|
||||||
(list "-Dlibseat-logind=disabled")))))
|
(list "-Dlibseat-logind=disabled")))))
|
||||||
(propagated-inputs '())
|
(propagated-inputs '())
|
||||||
(properties '((disable-updater? . #t))))))
|
(properties '((disable-updater? . #t)))))
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
(inherit base)
|
(inherit base)
|
||||||
(name "busybox-static")
|
(name "busybox-static")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments arguments
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
#~(modify-phases #$phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'configure 'static-build
|
(add-after 'configure 'static-build
|
||||||
|
|||||||
@ -33,10 +33,10 @@
|
|||||||
(base32
|
(base32
|
||||||
"0h0fxybdb23cyx4xqz4axyp4sbqi2bqcvcwqin74l59wmfwpz0rr"))))
|
"0h0fxybdb23cyx4xqz4axyp4sbqi2bqcvcwqin74l59wmfwpz0rr"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments emacs-arei)
|
(substitute-keyword-arguments arguments
|
||||||
((#:lisp-directory _ #f) "lisp")))
|
((#:lisp-directory _ #f) "lisp")))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(modify-inputs (package-propagated-inputs emacs-arei)
|
(modify-inputs propagated-inputs
|
||||||
(prepend emacs-consult))))))
|
(prepend emacs-consult))))))
|
||||||
|
|
||||||
(define-public emacs-caddyfile-mode
|
(define-public emacs-caddyfile-mode
|
||||||
|
|||||||
@ -20,6 +20,6 @@
|
|||||||
"guix-wip-zfs-boot-support.patch")))
|
"guix-wip-zfs-boot-support.patch")))
|
||||||
(name "guix-dolly")
|
(name "guix-dolly")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments guix)
|
(substitute-keyword-arguments arguments
|
||||||
((#:parallel-build? _ #f) #t)))
|
((#:parallel-build? _ #f) #t)))
|
||||||
(properties '((disable-updater? . #t)))))
|
(properties '((disable-updater? . #t)))))
|
||||||
|
|||||||
@ -17,11 +17,11 @@
|
|||||||
(inherit dropbear)
|
(inherit dropbear)
|
||||||
(name "dropbear-static")
|
(name "dropbear-static")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments arguments
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
#~(append #$flags (list "--enable-static")))))
|
#~(append #$flags (list "--enable-static")))))
|
||||||
(inputs
|
(inputs
|
||||||
(modify-inputs (package-inputs base)
|
(modify-inputs inputs
|
||||||
(append `(,zlib "static"))
|
(append `(,zlib "static"))
|
||||||
(replace "libtomcrypt" `(,libtomcrypt "static"))
|
(replace "libtomcrypt" `(,libtomcrypt "static"))
|
||||||
(replace "libtommath" `(,libtommath "static"))))
|
(replace "libtommath" `(,libtommath "static"))))
|
||||||
|
|||||||
@ -15,12 +15,12 @@
|
|||||||
(inherit base)
|
(inherit base)
|
||||||
(name "libva-nox")
|
(name "libva-nox")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments arguments
|
||||||
((#:configure-flags configure-flags)
|
((#:configure-flags configure-flags)
|
||||||
#~(append #$configure-flags (list "--disable-glx")))
|
#~(append #$configure-flags (list "--disable-glx")))
|
||||||
((#:phases _) #~%standard-phases)))
|
((#:phases _) #~%standard-phases)))
|
||||||
(inputs
|
(inputs
|
||||||
(modify-inputs (package-inputs base)
|
(modify-inputs inputs
|
||||||
(delete "libx11" "libxext" "libxfixes")))
|
(delete "libx11" "libxext" "libxfixes")))
|
||||||
(properties
|
(properties
|
||||||
`(,@(package-properties base)
|
`(,@(package-properties base)
|
||||||
|
|||||||
@ -207,7 +207,7 @@ from serving static websites to running dynamic web applications.")
|
|||||||
(base32
|
(base32
|
||||||
"14vpk4939v67jiapl8yn3a2v0sfzblaajlzcqfqii2xcb3a290j3"))))
|
"14vpk4939v67jiapl8yn3a2v0sfzblaajlzcqfqii2xcb3a290j3"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(modify-inputs (package-native-inputs caddy)
|
(modify-inputs native-inputs
|
||||||
(replace "vendored-go-dependencies"
|
(replace "vendored-go-dependencies"
|
||||||
(origin
|
(origin
|
||||||
(method (go-mod-vendor #:go go-1.25))
|
(method (go-mod-vendor #:go go-1.25))
|
||||||
|
|||||||
@ -167,7 +167,7 @@ supporting various Wayland compositors like @code{niri}, @code{hyprland}, and
|
|||||||
(sha256
|
(sha256
|
||||||
(base32 "0pyakmaq2bwdhnnqnrsqm9g1mjf5spij6hsvmlw058kxj8xkbbd4"))))
|
(base32 "0pyakmaq2bwdhnnqnrsqm9g1mjf5spij6hsvmlw058kxj8xkbbd4"))))
|
||||||
(inputs
|
(inputs
|
||||||
(modify-inputs (package-inputs quickshell)
|
(modify-inputs inputs
|
||||||
(prepend glib polkit)))
|
(prepend glib polkit)))
|
||||||
(home-page "https://noctalia.dev/")
|
(home-page "https://noctalia.dev/")
|
||||||
(synopsis "QtQuick-based desktop shell toolkit (Noctalia fork)")))
|
(synopsis "QtQuick-based desktop shell toolkit (Noctalia fork)")))
|
||||||
|
|||||||
@ -169,7 +169,7 @@ packages, excluding superseded packages."
|
|||||||
(version (package-version (assoc-ref source-mapping default-system)))
|
(version (package-version (assoc-ref source-mapping default-system)))
|
||||||
(source #f)
|
(source #f)
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments p)
|
(substitute-keyword-arguments arguments
|
||||||
((#:phases phases #~%standard-phases)
|
((#:phases phases #~%standard-phases)
|
||||||
#~(modify-phases #$phases
|
#~(modify-phases #$phases
|
||||||
(replace 'unpack
|
(replace 'unpack
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user