mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-11-16 17:34:37 +00:00
Compare commits
No commits in common. "f4d7a54232f304e66684e8460d5e0adc4bd6532f" and "b0d345d1157b30b3a8a09be7374fa0763c35098b" have entirely different histories.
f4d7a54232
...
b0d345d115
@ -32,7 +32,7 @@
|
|||||||
(define-public cloudflare-warp-bin
|
(define-public cloudflare-warp-bin
|
||||||
(package
|
(package
|
||||||
(name "cloudflare-warp-bin")
|
(name "cloudflare-warp-bin")
|
||||||
(version "2025.8.779.0")
|
(version "2025.6.1335.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://pkg.cloudflareclient.com"
|
(uri (string-append "https://pkg.cloudflareclient.com"
|
||||||
@ -40,7 +40,7 @@
|
|||||||
"cloudflare-warp_" version "_amd64.deb"))
|
"cloudflare-warp_" version "_amd64.deb"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0p6d7zib94f20hp7wdilb92cdqvvh6qnf77844zy3fkjyghksvff"))))
|
"1kk6z05n0ryhvn7xbhlx79qnvyl5drbvvqzy9sy5fclcv8x29gpi"))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:install-plan
|
(list #:install-plan
|
||||||
@ -311,7 +311,7 @@ metrics no matter where they are stored.")
|
|||||||
(define-public prometheus-bin
|
(define-public prometheus-bin
|
||||||
(package
|
(package
|
||||||
(name "prometheus-bin")
|
(name "prometheus-bin")
|
||||||
(version "3.7.2")
|
(version "3.6.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/prometheus/prometheus"
|
(uri (string-append "https://github.com/prometheus/prometheus"
|
||||||
@ -319,7 +319,7 @@ metrics no matter where they are stored.")
|
|||||||
"/prometheus-" version ".linux-amd64.tar.gz"))
|
"/prometheus-" version ".linux-amd64.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wam45r7ksgmpbgryxwy1pddk3yf0pk85zph4k7gag8x7k2bqn35"))))
|
"05j985qhj4dvnfc6ly08ilx3nkhx133qc9ydzjpn2hd6am5fy0i0"))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:install-plan
|
(list #:install-plan
|
||||||
|
|||||||
@ -72,6 +72,18 @@
|
|||||||
;;; Unified Kernel Image support.
|
;;; Unified Kernel Image support.
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
|
(define systemd-version "258")
|
||||||
|
(define systemd-source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/systemd/systemd")
|
||||||
|
(commit (string-append "v" systemd-version))))
|
||||||
|
(file-name (git-file-name "systemd" systemd-version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"18gnp45gl1154jra6qv95k8y7ny6phdm87yqi5jdq13cadlrklf6"))))
|
||||||
|
|
||||||
(define (systemd-stub-name)
|
(define (systemd-stub-name)
|
||||||
(let ((arch (cond ((target-x86-32?) "ia32")
|
(let ((arch (cond ((target-x86-32?) "ia32")
|
||||||
((target-x86-64?) "x64")
|
((target-x86-64?) "x64")
|
||||||
@ -83,16 +95,8 @@
|
|||||||
(define-public systemd-stub
|
(define-public systemd-stub
|
||||||
(package
|
(package
|
||||||
(name "systemd-stub")
|
(name "systemd-stub")
|
||||||
(version "258")
|
(version systemd-version)
|
||||||
(source (origin
|
(source systemd-source)
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/systemd/systemd")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name "name" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"18gnp45gl1154jra6qv95k8y7ny6phdm87yqi5jdq13cadlrklf6"))))
|
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f
|
(list #:tests? #f
|
||||||
@ -126,16 +130,8 @@ Supports measured and/or verified boot environments.")
|
|||||||
(define-public ukify
|
(define-public ukify
|
||||||
(package
|
(package
|
||||||
(name "ukify")
|
(name "ukify")
|
||||||
(version "258")
|
(version systemd-version)
|
||||||
(source (origin
|
(source systemd-source)
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/systemd/systemd")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"18gnp45gl1154jra6qv95k8y7ny6phdm87yqi5jdq13cadlrklf6"))))
|
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:phases
|
(list #:phases
|
||||||
|
|||||||
@ -39,7 +39,7 @@ editing Caddyfiles, configuration files for @code{caddy}.")
|
|||||||
(properties
|
(properties
|
||||||
'((disable-updater? . #t))))))
|
'((disable-updater? . #t))))))
|
||||||
|
|
||||||
(define-public emacs-eat/dolly
|
(define-public emacs-eat/hako
|
||||||
(package
|
(package
|
||||||
(inherit
|
(inherit
|
||||||
(package-with-extra-patches emacs-eat
|
(package-with-extra-patches emacs-eat
|
||||||
@ -55,7 +55,7 @@ editing Caddyfiles, configuration files for @code{caddy}.")
|
|||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14d6nvagcri0r687y3m179ijmnad89m5d5dj2rn2p6rpfc5nssr0"))))))
|
"14d6nvagcri0r687y3m179ijmnad89m5d5dj2rn2p6rpfc5nssr0"))))))
|
||||||
(name "emacs-eat-dolly")))
|
(name "emacs-eat-hako")))
|
||||||
|
|
||||||
(define-public emacs-nftables-mode
|
(define-public emacs-nftables-mode
|
||||||
(package
|
(package
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
(define-public prismlauncher/dolly
|
(define-public prismlauncher/dolly
|
||||||
(package
|
(package
|
||||||
(name "prismlauncher-dolly")
|
(name "prismlauncher-dolly")
|
||||||
(version "9.4")
|
(version "9.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -31,7 +31,7 @@
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1xxgyx0z5r3hk3yk4gglbfwvq2qk1j9a0dkrv55j4vrlkni79nrm"))))
|
"16ra1cb8rc00cd2si3k7qmw8db3g0pf6n15aar60dh7kp9ig8jwb"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
(package
|
(package
|
||||||
(inherit go-1.24)
|
(inherit go-1.24)
|
||||||
(name "go")
|
(name "go")
|
||||||
(version "1.25.3")
|
(version "1.25.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
@ -29,7 +29,7 @@
|
|||||||
(commit (string-append "go" version))))
|
(commit (string-append "go" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "037gcrl8nagdsq2kv8irx7n0nijjmlqpz0b0zyj482xz2wzar0fs"))))
|
(base32 "1pc6ybdsd2v6rviylmmdzns3v0ramrcbhn935ikff39shpij4xp4"))))
|
||||||
;; TODO
|
;; TODO
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments go-1.24)
|
(substitute-keyword-arguments (package-arguments go-1.24)
|
||||||
|
|||||||
@ -19,7 +19,7 @@
|
|||||||
(define-public cloudflared
|
(define-public cloudflared
|
||||||
(package
|
(package
|
||||||
(name "cloudflared")
|
(name "cloudflared")
|
||||||
(version "2025.10.0")
|
(version "2025.9.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -31,7 +31,7 @@
|
|||||||
;; (snippet '(delete-file-recursively "vendor"))
|
;; (snippet '(delete-file-recursively "vendor"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17an3nky4ibfi486wy2gsbv39qcmbsc3yvs3h2w6yxa4cb9knk6v"))))
|
"07pq6p6lq91173qxckqk181slzlyjc6zclvg9mq2l92znk0i2nf4"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:go go-1.24
|
(list #:go go-1.24
|
||||||
@ -70,7 +70,7 @@ origin can remain as closed as possible.")
|
|||||||
(define-public mihomo
|
(define-public mihomo
|
||||||
(package
|
(package
|
||||||
(name "mihomo")
|
(name "mihomo")
|
||||||
(version "1.19.15")
|
(version "1.19.14")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -79,7 +79,7 @@ origin can remain as closed as possible.")
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0znia4yhnz5c8bi4picksibrr1ggqf8adphmisxim4720nv1ja2v"))))
|
"0kq400n22aphz9vapgqr7hkkphn608as37244q2xb21fm5hh90kl"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
@ -124,7 +124,7 @@ origin can remain as closed as possible.")
|
|||||||
(file-name "vendored-go-dependencies")
|
(file-name "vendored-go-dependencies")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0917ksckkyh78v6sjbyss4ca52pqbza05vdxsxr79f9r6frzxsxp"))))
|
"1imrmfcr2s7cspgpay1yj7y4rhafnmxjjhywzff30k25an7mw16p"))))
|
||||||
(if (%current-target-system)
|
(if (%current-target-system)
|
||||||
(list this-package)
|
(list this-package)
|
||||||
'())))
|
'())))
|
||||||
@ -140,7 +140,7 @@ bypass network restrictions." )
|
|||||||
(define-public sing-box
|
(define-public sing-box
|
||||||
(package
|
(package
|
||||||
(name "sing-box")
|
(name "sing-box")
|
||||||
(version "1.12.11")
|
(version "1.12.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -149,7 +149,7 @@ bypass network restrictions." )
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vk7wqbwzy1qwhiak0n6dbjxr4mcdpmlbrsflr6l8xwfjmzhnvrb"))))
|
"1mrxd4x9j501vrwmipdj0aqqnakkc9lp62z7gxvhzdh9zb9pvsz3"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
@ -217,7 +217,7 @@ bypass network restrictions." )
|
|||||||
(file-name "vendored-go-dependencies")
|
(file-name "vendored-go-dependencies")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dwrii2d05rc4j6gy6kbz4q6ry9xghggb8384y7x8a3czsq9x7gs"))))
|
"1vbi23x89047i8a9w400pqcy4lf7kw5r8237jhli7z0azmdb4kmb"))))
|
||||||
(if (%current-target-system)
|
(if (%current-target-system)
|
||||||
(list this-package)
|
(list this-package)
|
||||||
'())))
|
'())))
|
||||||
@ -258,7 +258,7 @@ a SOCKS5 proxy.")
|
|||||||
(define-public tailscale
|
(define-public tailscale
|
||||||
(package
|
(package
|
||||||
(name "tailscale")
|
(name "tailscale")
|
||||||
(version "1.90.2")
|
(version "1.88.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -267,7 +267,7 @@ a SOCKS5 proxy.")
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07m76ijcrspmmyncdqvyfsi5nfca0m4gs3bjlzxg3ly7gg9hnfhr"))
|
"0jgalpb2d912ymph239vxhh947jpsdqc05gf08303b9n5p4zk646"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
@ -369,7 +369,7 @@ a SOCKS5 proxy.")
|
|||||||
(file-name "vendored-go-dependencies")
|
(file-name "vendored-go-dependencies")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1g040kwafvwma0ncy8ni86zq13rv8kkz0ybbgji51w5qb3cw4pdd"))))
|
"0aq9qvb1w2chilkq3gmm3r1914yfaasrqmiz8ibbfk14cdskm8gi"))))
|
||||||
(if (%current-target-system)
|
(if (%current-target-system)
|
||||||
(list this-package)
|
(list this-package)
|
||||||
'())))
|
'())))
|
||||||
|
|||||||
@ -16,7 +16,7 @@
|
|||||||
(define-public sops
|
(define-public sops
|
||||||
(package
|
(package
|
||||||
(name "sops")
|
(name "sops")
|
||||||
(version "3.11.0")
|
(version "3.10.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -25,10 +25,10 @@
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1md6mk1cklcaa90mfy5dsm44i5xc0l598dfr3mi0j1k4ydkfn280"))))
|
"0hnp08w7kcb30ki9h1jca5x0n9cmyxq4nxl00590l0aca32jgm11"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:go go-1.24
|
(list #:go go-1.23
|
||||||
#:install-source? #f
|
#:install-source? #f
|
||||||
#:import-path "./cmd/sops"
|
#:import-path "./cmd/sops"
|
||||||
#:build-flags
|
#:build-flags
|
||||||
@ -53,12 +53,12 @@
|
|||||||
(assoc-ref gnu:%standard-phases 'install-license-files)))))
|
(assoc-ref gnu:%standard-phases 'install-license-files)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list (origin
|
(list (origin
|
||||||
(method (go-mod-vendor #:go go-1.24))
|
(method (go-mod-vendor #:go go-1.23))
|
||||||
(uri (package-source this-package))
|
(uri (package-source this-package))
|
||||||
(file-name "vendored-go-dependencies")
|
(file-name "vendored-go-dependencies")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05pd6d80x70xyak8clnjiiir8limlzq5cx2aqlda3p1ln4qpgc7m")))))
|
"0xc73hy8cm5qsaakhmy3fm0ijh5akghva330c3vinjsm8hhd98gd")))))
|
||||||
(home-page "https://getsops.io/")
|
(home-page "https://getsops.io/")
|
||||||
(synopsis "Simple and flexible tool for managing secrets")
|
(synopsis "Simple and flexible tool for managing secrets")
|
||||||
(description
|
(description
|
||||||
|
|||||||
@ -24,7 +24,7 @@
|
|||||||
(define-public ai-robots-txt
|
(define-public ai-robots-txt
|
||||||
(package
|
(package
|
||||||
(name "ai-robots-txt")
|
(name "ai-robots-txt")
|
||||||
(version "1.42")
|
(version "1.40")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -33,7 +33,7 @@
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05nnc0r4zz8sq8mhp299d9d6hpd8qcm81wkn30i4bzq0a220si07"))
|
"1wa1c7awj2mpz78h1v0pw3v9w0ywpwjp26ml5s4qbgi0hmfcss5l"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet '(delete-file-recursively "code"))))
|
(snippet '(delete-file-recursively "code"))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
@ -220,7 +220,7 @@ from serving static websites to running dynamic web applications.")
|
|||||||
(define-public hugo
|
(define-public hugo
|
||||||
(package
|
(package
|
||||||
(name "hugo")
|
(name "hugo")
|
||||||
(version "0.152.2")
|
(version "0.150.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -229,7 +229,7 @@ from serving static websites to running dynamic web applications.")
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"093p1k0m2n5b2bbk49kmciwr92wy9b8b4hw5wwmlhs2v304rw9cx"))))
|
"1r86klgw82qai664sri90jd3x9my2m61nrj0936z4d4gy4bp0q2d"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
@ -288,7 +288,7 @@ from serving static websites to running dynamic web applications.")
|
|||||||
(file-name "vendored-go-dependencies")
|
(file-name "vendored-go-dependencies")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yhk8as1jz5459bzkmqjwdp82xqsr7sx1m1jkkk58cfzagznpz78")))
|
"1mhx00vsdpjfwqxln866ssdha0c081r15v6032q87hxh70b536iv")))
|
||||||
(package-source libsass)
|
(package-source libsass)
|
||||||
(package-source libwebp)))
|
(package-source libwebp)))
|
||||||
(home-page "https://gohugo.io/")
|
(home-page "https://gohugo.io/")
|
||||||
|
|||||||
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
(define-configuration qbittorrent-configuration
|
(define-configuration qbittorrent-configuration
|
||||||
(qbittorrent
|
(qbittorrent
|
||||||
(file-like qbittorrent-no-x)
|
(file-like qbittorrent-nox)
|
||||||
"The qBittorrent package to use, we need @command{qbittorrent-nox}.")
|
"The qBittorrent package to use, we need @command{qbittorrent-nox}.")
|
||||||
(webui-port
|
(webui-port
|
||||||
(integer 8080)
|
(integer 8080)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user