Compare commits

..

No commits in common. 'ca386c52be9b66c8579b81a66c610cc011ca14f5' and '8ca24e4559bc0b9eb5c736af1e04e600101dc593' have entirely different histories.

  1. 12
      rosenthal/packages/binaries.scm
  2. 28
      rosenthal/packages/bootloaders.scm
  3. 23
      rosenthal/packages/emacs-xyz.scm
  4. 6
      rosenthal/packages/networking.scm

@ -147,7 +147,7 @@ different needs.")
(define-public hugo-bin
(package
(name "hugo-bin")
(version "0.128.2")
(version "0.126.1")
(source (origin
(method url-fetch)
(uri (string-append
@ -155,7 +155,7 @@ different needs.")
version "/hugo_extended_" version "_linux-amd64.tar.gz"))
(sha256
(base32
"1i8jqhw9rra3xjkxzzyj6liqrg52wdi5cdzf3dzijv6pap0m6cm8"))))
"1xrjv0w7a23bv9mcjaizamia1fg2sqwqq00d5r3z50yaiwrzr5zv"))))
(build-system copy-build-system)
(arguments
(list #:install-plan #~'(("hugo" "bin/"))
@ -216,7 +216,7 @@ monster-in-the-middle}.")
(define-public sing-box-bin
(package
(name "sing-box-bin")
(version "1.9.3")
(version "1.8.9")
(source (origin
(method url-fetch)
(uri (string-append
@ -224,7 +224,7 @@ monster-in-the-middle}.")
version "/sing-box-" version "-linux-amd64.tar.gz"))
(sha256
(base32
"1f9gzpd95hqb5322djalahgyn2bs4j6cm72j02b1wbrjcm901gkn"))))
"1cj4ygwv53qmin7hpz1nqqa694fj6d0g3qwq5srsb8wvg6sl47j8"))))
(build-system copy-build-system)
(arguments (list #:install-plan #~'(("sing-box" "bin/"))))
(supported-systems '("x86_64-linux"))
@ -237,14 +237,14 @@ monster-in-the-middle}.")
(define-public tailscale-bin
(package
(name "tailscale-bin")
(version "1.68.2")
(version "1.66.4")
(source (origin
(method url-fetch)
(uri (string-append "https://pkgs.tailscale.com"
"/stable/tailscale_" version "_amd64.tgz"))
(sha256
(base32
"1lmnssdpaznxqgkm943v0fg6njjbjr7z9ajzm3whd4l0jx41ln9v"))))
"147xrwrfcpzxwlcmnqy99aqzpa8xd3sg3fliqf6sj6hx9xmw26d6"))))
(build-system copy-build-system)
(arguments
(list #:install-plan

@ -14,15 +14,35 @@
;; Patches obtained from:
;; <https://leo3418.github.io/collections/gentoo-config-luks2-grub-systemd/packages.html>
(define grub-runtime-memregion-alloc-patch
(origin
(method url-fetch)
(uri (string-append "https://leo3418.github.io/"
"res/collections/gentoo-config-luks2-grub-systemd/"
"4500-grub-2.06-runtime-memregion-alloc.patch"))
(sha256
(base32
"1ynlyaabdlw7g4pqr4sc7jdqn9riwms637cqhlqnyi8jp6cs4a6x"))))
(define grub-luks2-argon2-support-patch
(origin
(method url-fetch)
(uri (string-append "https://leo3418.github.io/"
"res/collections/gentoo-config-luks2-grub-systemd/"
"grub-2.12-luks2-argon2-v4.patch"))
"5000-grub-2.06-luks2-argon2-v4.patch"))
(sha256
(base32
"0jfyl2j9bh0225iqq36gy55p2l96zhhhsk5r53aqmlivvxpjlf7g"))))
(define grub-install-luks2-fix-patch
(origin
(method url-fetch)
(uri (string-append "https://leo3418.github.io/"
"res/collections/gentoo-config-luks2-grub-systemd/"
"9500-grub-AUR-improved-luks2.patch"))
(sha256
(base32
"02y15k6rd5vj2shfijyhq2nr2775vpa55ijfy6bb8irpnh8i2272"))))
"0hn0nkp5cfsyvvyfj3vbw0z4c2swdi6gvxradl401lqvwsvq60p4"))))
(define-public grub-efi-luks2
(let ((base grub-efi))
@ -35,7 +55,9 @@
(inherit base)
(patches
(append (origin-patches base)
(list grub-luks2-argon2-support-patch))))))
(list grub-runtime-memregion-alloc-patch
grub-luks2-argon2-support-patch
grub-install-luks2-fix-patch))))))
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:configure-flags flags ''())

@ -9,29 +9,6 @@
#:use-module (guix git-download)
#:use-module (guix packages))
(define-public emacs-pcmpl-tailscale
(let ((commit "acd6bce54af506b0450cf6aa1068f63d4e25c8ce")
(revision "0"))
(package
(name "emacs-pcmpl-tailscale")
(version (git-version "0.0.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.thanosapollo.org/pcmpl-tailscale")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0lk808ahy8ckg2fr2pqk3p5if81nqrwsajrgqafv9hgn8w4l1x0p"))))
(build-system emacs-build-system)
(home-page "https://git.thanosapollo.org/pcmpl-tailscale")
(synopsis "Enhanced shell completions for tailscale")
(description
"This package provides enhanced completions for the tailscale command
and it's subcommands.")
(license license:gpl3+))))
;; https://issues.guix.gnu.org/59552
(define-public emacs-wakatime-mode
;; No release since May 5, 2015.

@ -14,7 +14,7 @@
(define-public cloudflared
(package
(name "cloudflared")
(version "2024.7.0")
(version "2024.5.0")
(source (origin
(method git-fetch)
(uri (git-reference
@ -26,10 +26,10 @@
;; (snippet '(delete-file-recursively "vendor"))
(sha256
(base32
"01id2kgfyihyx9r7l2i4jk51dygl0g5ppjsnnnwfgwz4clbcq3i4"))))
"09943spv1z1iz6wcfy0n5q31rb2dyg313lw57xpfwl7p64wavw65"))))
(build-system go-build-system)
(arguments
(list #:go go-1.22
(list #:go go-1.21
#:install-source? #f
#:import-path "github.com/cloudflare/cloudflared/cmd/cloudflared"
#:unpack-path "github.com/cloudflare/cloudflared"

Loading…
Cancel
Save