mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-03-27 12:54:21 +00:00
Compare commits
3 Commits
0168423b50
...
ad8bb365c0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ad8bb365c0 | ||
|
|
794db4f702 | ||
|
|
af150b1f65 |
@ -60,8 +60,6 @@
|
||||
(call-with-output-file (in-vicinity limine-directory "limine.conf.tmp")
|
||||
(lambda (port)
|
||||
(let* ((ukify #$(file-append ukify "/bin/ukify"))
|
||||
(script-path (first args))
|
||||
(minbytes (* 2 (stat:size (stat script-path))))
|
||||
(current-label (first '#$labels))
|
||||
(current-args (first (list #$@ukify-args)))
|
||||
(old-labels (cdr '#$labels))
|
||||
@ -69,7 +67,7 @@
|
||||
(format port "timeout: 5~%")
|
||||
(with-directory-excursion guix-directory
|
||||
(for-each delete-file (find-files "." "^OLD-[0-9]+\\.EFI$"))
|
||||
(apply invoke ukify "build" "--output" "CURRENT.EFI"
|
||||
(apply invoke/quiet ukify "build" "--output" "CURRENT.EFI"
|
||||
current-args)
|
||||
(format port "
|
||||
/~a
|
||||
@ -86,12 +84,10 @@
|
||||
(unless (null? labels)
|
||||
(with-exception-handler
|
||||
(lambda _
|
||||
(false-if-exception (delete-file image-name))
|
||||
(delete-file image-name)
|
||||
;; Exit loop.
|
||||
(loop 0 '() '()))
|
||||
(lambda ()
|
||||
(when (< (free-disk-space ".") minbytes)
|
||||
(raise-exception 'insuffcient-disk-space))
|
||||
(apply invoke/quiet
|
||||
ukify "build" "--output" image-name
|
||||
(first args))
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
((target-aarch64?) "AA64")
|
||||
((target-riscv64?) "RISCV64"))))))
|
||||
(mkdir-p (dirname installation-path))
|
||||
(apply invoke #$(file-append ukify "/bin/ukify")
|
||||
(apply invoke/quiet #$(file-append ukify "/bin/ukify")
|
||||
"build" "--output" installation-path
|
||||
#$(menu-entry->ukify-args (first entries))))))))
|
||||
|
||||
|
||||
@ -59,17 +59,16 @@ the user to manage services with dependencies and parallel startup.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public libseat-sans-logind
|
||||
(let ((base libseat))
|
||||
(package
|
||||
(inherit base)
|
||||
(name "libseat-sans-logind")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:configure-flags configure-flags)
|
||||
#~(append #$configure-flags
|
||||
(list "-Dlibseat-logind=disabled")))))
|
||||
(propagated-inputs '())
|
||||
(properties '((disable-updater? . #t))))))
|
||||
(package
|
||||
(inherit libseat)
|
||||
(name "libseat-sans-logind")
|
||||
(arguments
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:configure-flags configure-flags)
|
||||
#~(append #$configure-flags
|
||||
(list "-Dlibseat-logind=disabled")))))
|
||||
(propagated-inputs '())
|
||||
(properties '((disable-updater? . #t)))))
|
||||
|
||||
(define-public pam-dumb-runtime-dir
|
||||
(package
|
||||
@ -109,14 +108,13 @@ exists and is only writable by root.")
|
||||
(license license:bsd-0)))
|
||||
|
||||
(define-public seatd-sans-logind
|
||||
(let ((base seatd))
|
||||
(package
|
||||
(inherit base)
|
||||
(name "seatd-sans-logind")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
((#:configure-flags configure-flags)
|
||||
#~(append #$configure-flags
|
||||
(list "-Dlibseat-logind=disabled")))))
|
||||
(propagated-inputs '())
|
||||
(properties '((disable-updater? . #t))))))
|
||||
(package
|
||||
(inherit seatd)
|
||||
(name "seatd-sans-logind")
|
||||
(arguments
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:configure-flags configure-flags)
|
||||
#~(append #$configure-flags
|
||||
(list "-Dlibseat-logind=disabled")))))
|
||||
(propagated-inputs '())
|
||||
(properties '((disable-updater? . #t)))))
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
(inherit base)
|
||||
(name "busybox-static")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'configure 'static-build
|
||||
|
||||
@ -33,10 +33,10 @@
|
||||
(base32
|
||||
"0h0fxybdb23cyx4xqz4axyp4sbqi2bqcvcwqin74l59wmfwpz0rr"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments emacs-arei)
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:lisp-directory _ #f) "lisp")))
|
||||
(propagated-inputs
|
||||
(modify-inputs (package-propagated-inputs emacs-arei)
|
||||
(modify-inputs propagated-inputs
|
||||
(prepend emacs-consult))))))
|
||||
|
||||
(define-public emacs-caddyfile-mode
|
||||
|
||||
@ -20,6 +20,6 @@
|
||||
"guix-wip-zfs-boot-support.patch")))
|
||||
(name "guix-dolly")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments guix)
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:parallel-build? _ #f) #t)))
|
||||
(properties '((disable-updater? . #t)))))
|
||||
|
||||
@ -17,11 +17,11 @@
|
||||
(inherit dropbear)
|
||||
(name "dropbear-static")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:configure-flags flags)
|
||||
#~(append #$flags (list "--enable-static")))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs base)
|
||||
(modify-inputs inputs
|
||||
(append `(,zlib "static"))
|
||||
(replace "libtomcrypt" `(,libtomcrypt "static"))
|
||||
(replace "libtommath" `(,libtommath "static"))))
|
||||
|
||||
@ -15,12 +15,12 @@
|
||||
(inherit base)
|
||||
(name "libva-nox")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base)
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:configure-flags configure-flags)
|
||||
#~(append #$configure-flags (list "--disable-glx")))
|
||||
((#:phases _) #~%standard-phases)))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs base)
|
||||
(modify-inputs inputs
|
||||
(delete "libx11" "libxext" "libxfixes")))
|
||||
(properties
|
||||
`(,@(package-properties base)
|
||||
|
||||
@ -207,7 +207,7 @@ from serving static websites to running dynamic web applications.")
|
||||
(base32
|
||||
"14vpk4939v67jiapl8yn3a2v0sfzblaajlzcqfqii2xcb3a290j3"))))
|
||||
(native-inputs
|
||||
(modify-inputs (package-native-inputs caddy)
|
||||
(modify-inputs native-inputs
|
||||
(replace "vendored-go-dependencies"
|
||||
(origin
|
||||
(method (go-mod-vendor #:go go-1.25))
|
||||
|
||||
@ -167,7 +167,7 @@ supporting various Wayland compositors like @code{niri}, @code{hyprland}, and
|
||||
(sha256
|
||||
(base32 "0pyakmaq2bwdhnnqnrsqm9g1mjf5spij6hsvmlw058kxj8xkbbd4"))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs quickshell)
|
||||
(modify-inputs inputs
|
||||
(prepend glib polkit)))
|
||||
(home-page "https://noctalia.dev/")
|
||||
(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)))
|
||||
(source #f)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments p)
|
||||
(substitute-keyword-arguments arguments
|
||||
((#:phases phases #~%standard-phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'unpack
|
||||
|
||||
Loading…
Reference in New Issue
Block a user