aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-10-07 06:46:18 -0300
committerEuAndreh <eu@euandre.org>2023-10-07 06:46:18 -0300
commitda7731841df8bb885187327ae0c116937ddee25c (patch)
treebfb8d0c5b98762432abbfb89c6ccdce80d52cb10
parentetc/guix/home.scm: Disable "avr-toolchain" package (diff)
downloaddotfiles-da7731841df8bb885187327ae0c116937ddee25c.tar.gz
dotfiles-da7731841df8bb885187327ae0c116937ddee25c.tar.xz
etc/guix/home.scm: Remove `work-packages` variable
-rw-r--r--etc/guix/home.scm22
1 files changed, 2 insertions, 20 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm
index fce59db..e321e59 100644
--- a/etc/guix/home.scm
+++ b/etc/guix/home.scm
@@ -276,18 +276,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"))
@@ -578,12 +566,6 @@ libraries/software/operating systems
(define (xdg path)
(string-append xdg-prefix "/" path))
-(define work-packages
- (append
- (list curl-openssl)
- (map (compose list specification->package+output symbol->string)
- '(openfortivpn))))
-
(home-environment
(packages
(append
@@ -691,6 +673,7 @@ libraries/software/operating systems
stunnel
netcat
siege
+ curl
curl:doc
xclip
cloc
@@ -1014,8 +997,7 @@ libraries/software/operating systems
(hunspell-dictionary-utf8 "eo")
(hunspell-dictionary-utf8 "es")
(script "cronjob" (slurp (string-append (getenv "XDG_CONFIG_HOME")
- "/sh/cronjob.sh"))))
- work-packages))
+ "/sh/cronjob.sh"))))))
(services
(list
(service (home-service 'clipmenu clipmenu "/bin/clipmenud"))