diff options
-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 |