diff options
author | EuAndreh <eu@euandre.org> | 2025-03-30 05:27:17 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-30 05:27:17 -0300 |
commit | b23a1515ad5439e29477b50dd76ef4d0c533cb1d (patch) | |
tree | 3986d5d60cc2f8a4543cc2da7b08a2d8e1539706 | |
parent | etc/guix/home.scm: Add "tidy-html" package (diff) | |
download | dotfiles-b23a1515ad5439e29477b50dd76ef4d0c533cb1d.tar.gz dotfiles-b23a1515ad5439e29477b50dd76ef4d0c533cb1d.tar.xz |
etc/guix/home.scm: Use latest version of yt-dlp
-rw-r--r-- | etc/guix/home.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index a52edb8..2681ea1 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -1,6 +1,7 @@ (use-modules ((ice-9 textual-ports) #:prefix textual-ports:) ((guix licenses) #:prefix licenses:) + ((guix transformations) #:prefix transformations:) ((xyz euandreh heredoc) #:prefix heredoc:) ((org euandre queue) #:prefix q:) (gnu) @@ -63,6 +64,11 @@ (modify-inputs (package-native-inputs tcc) (append which))))) +(define yt-dlp-latest + ((transformations:options->transformation + '((with-latest . "yt-dlp"))) + yt-dlp)) + (define (slurp name) (string-trim-both @@ -468,7 +474,7 @@ less nano patch - yt-dlp + ;; yt-dlp ripgrep mpvx @@ -497,6 +503,7 @@ anki firefox)) (list + yt-dlp-latest tiniercc) (list (script "cronjob" |