diff options
author | EuAndreh <eu@euandre.org> | 2023-08-03 18:13:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-08-03 18:13:21 -0300 |
commit | 53e39a3a8cd3423ff902af241a6c1cf37d2aba09 (patch) | |
tree | 2a0e2571cec4b90b6fa49611e0324fc76ded27b5 | |
parent | bin/boop: Fix "usage()" message (diff) | |
download | dotfiles-53e39a3a8cd3423ff902af241a6c1cf37d2aba09.tar.gz dotfiles-53e39a3a8cd3423ff902af241a6c1cf37d2aba09.tar.xz |
etc/guix/home.scm: Revert back to upstream "curl" package
-rw-r--r-- | etc/guix/home.scm | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 8650893..3c1c73b 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -212,18 +212,6 @@ libraries/software/operating systems `(("libiconv" ,libiconv) ,@(package-inputs hunspell))))) -(define-public curl-openssl - (package - (inherit curl) - (arguments - (substitute-keyword-arguments (package-arguments curl) - ((#:configure-flags flags ''()) - #~(list (string-append "--with-openssl=" - (assoc-ref %build-inputs "openssl")))))) - (inputs - `(("openssl" ,openssl-3.0) - ,@(package-inputs curl))))) - (define (hunspell-dictionary-utf8 dict-name) (package (name (string-append "hunspell-dict-" dict-name "-utf8")) @@ -362,7 +350,7 @@ libraries/software/operating systems (define work-packages (append - (list curl-openssl) + (list) (map (compose list specification->package+output symbol->string) '(openfortivpn)))) @@ -532,6 +520,7 @@ libraries/software/operating systems nixfmt acl attr + curl ;; for compiling ECL libatomic-ops |