mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-03-27 12:54:21 +00:00
Compare commits
No commits in common. "ad8bb365c036de4fab2656300c0d88aab8dd48b8" and "0168423b50fc047e186cc35780bd20bb9f0721ff" have entirely different histories.
ad8bb365c0
...
0168423b50
@ -60,6 +60,8 @@
|
|||||||
(call-with-output-file (in-vicinity limine-directory "limine.conf.tmp")
|
(call-with-output-file (in-vicinity limine-directory "limine.conf.tmp")
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(let* ((ukify #$(file-append ukify "/bin/ukify"))
|
(let* ((ukify #$(file-append ukify "/bin/ukify"))
|
||||||
|
(script-path (first args))
|
||||||
|
(minbytes (* 2 (stat:size (stat script-path))))
|
||||||
(current-label (first '#$labels))
|
(current-label (first '#$labels))
|
||||||
(current-args (first (list #$@ukify-args)))
|
(current-args (first (list #$@ukify-args)))
|
||||||
(old-labels (cdr '#$labels))
|
(old-labels (cdr '#$labels))
|
||||||
@ -67,7 +69,7 @@
|
|||||||
(format port "timeout: 5~%")
|
(format port "timeout: 5~%")
|
||||||
(with-directory-excursion guix-directory
|
(with-directory-excursion guix-directory
|
||||||
(for-each delete-file (find-files "." "^OLD-[0-9]+\\.EFI$"))
|
(for-each delete-file (find-files "." "^OLD-[0-9]+\\.EFI$"))
|
||||||
(apply invoke/quiet ukify "build" "--output" "CURRENT.EFI"
|
(apply invoke ukify "build" "--output" "CURRENT.EFI"
|
||||||
current-args)
|
current-args)
|
||||||
(format port "
|
(format port "
|
||||||
/~a
|
/~a
|
||||||
@ -84,10 +86,12 @@
|
|||||||
(unless (null? labels)
|
(unless (null? labels)
|
||||||
(with-exception-handler
|
(with-exception-handler
|
||||||
(lambda _
|
(lambda _
|
||||||
(delete-file image-name)
|
(false-if-exception (delete-file image-name))
|
||||||
;; Exit loop.
|
;; Exit loop.
|
||||||
(loop 0 '() '()))
|
(loop 0 '() '()))
|
||||||
(lambda ()
|
(lambda ()
|
||||||
|
(when (< (free-disk-space ".") minbytes)
|
||||||
|
(raise-exception 'insuffcient-disk-space))
|
||||||
(apply invoke/quiet
|
(apply invoke/quiet
|
||||||
ukify "build" "--output" image-name
|
ukify "build" "--output" image-name
|
||||||
(first args))
|
(first args))
|
||||||
|
|||||||
@ -48,7 +48,7 @@
|
|||||||
((target-aarch64?) "AA64")
|
((target-aarch64?) "AA64")
|
||||||
((target-riscv64?) "RISCV64"))))))
|
((target-riscv64?) "RISCV64"))))))
|
||||||
(mkdir-p (dirname installation-path))
|
(mkdir-p (dirname installation-path))
|
||||||
(apply invoke/quiet #$(file-append ukify "/bin/ukify")
|
(apply invoke #$(file-append ukify "/bin/ukify")
|
||||||
"build" "--output" installation-path
|
"build" "--output" installation-path
|
||||||
#$(menu-entry->ukify-args (first entries))))))))
|
#$(menu-entry->ukify-args (first entries))))))))
|
||||||
|
|
||||||
|
|||||||
@ -59,16 +59,17 @@ 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
|
||||||
(package
|
(let ((base libseat))
|
||||||
(inherit libseat)
|
(package
|
||||||
(name "libseat-sans-logind")
|
(inherit base)
|
||||||
(arguments
|
(name "libseat-sans-logind")
|
||||||
(substitute-keyword-arguments arguments
|
(arguments
|
||||||
((#:configure-flags configure-flags)
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
#~(append #$configure-flags
|
((#:configure-flags configure-flags)
|
||||||
(list "-Dlibseat-logind=disabled")))))
|
#~(append #$configure-flags
|
||||||
(propagated-inputs '())
|
(list "-Dlibseat-logind=disabled")))))
|
||||||
(properties '((disable-updater? . #t)))))
|
(propagated-inputs '())
|
||||||
|
(properties '((disable-updater? . #t))))))
|
||||||
|
|
||||||
(define-public pam-dumb-runtime-dir
|
(define-public pam-dumb-runtime-dir
|
||||||
(package
|
(package
|
||||||
@ -108,13 +109,14 @@ 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
|
||||||
(package
|
(let ((base seatd))
|
||||||
(inherit seatd)
|
(package
|
||||||
(name "seatd-sans-logind")
|
(inherit base)
|
||||||
(arguments
|
(name "seatd-sans-logind")
|
||||||
(substitute-keyword-arguments arguments
|
(arguments
|
||||||
((#:configure-flags configure-flags)
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
#~(append #$configure-flags
|
((#:configure-flags configure-flags)
|
||||||
(list "-Dlibseat-logind=disabled")))))
|
#~(append #$configure-flags
|
||||||
(propagated-inputs '())
|
(list "-Dlibseat-logind=disabled")))))
|
||||||
(properties '((disable-updater? . #t)))))
|
(propagated-inputs '())
|
||||||
|
(properties '((disable-updater? . #t))))))
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
(inherit base)
|
(inherit base)
|
||||||
(name "busybox-static")
|
(name "busybox-static")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments arguments
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
((#: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 arguments
|
(substitute-keyword-arguments (package-arguments emacs-arei)
|
||||||
((#:lisp-directory _ #f) "lisp")))
|
((#:lisp-directory _ #f) "lisp")))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(modify-inputs propagated-inputs
|
(modify-inputs (package-propagated-inputs emacs-arei)
|
||||||
(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 arguments
|
(substitute-keyword-arguments (package-arguments guix)
|
||||||
((#: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 arguments
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
#~(append #$flags (list "--enable-static")))))
|
#~(append #$flags (list "--enable-static")))))
|
||||||
(inputs
|
(inputs
|
||||||
(modify-inputs inputs
|
(modify-inputs (package-inputs base)
|
||||||
(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 arguments
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
((#: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 inputs
|
(modify-inputs (package-inputs base)
|
||||||
(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 native-inputs
|
(modify-inputs (package-native-inputs caddy)
|
||||||
(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 inputs
|
(modify-inputs (package-inputs quickshell)
|
||||||
(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 arguments
|
(substitute-keyword-arguments (package-arguments p)
|
||||||
((#: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