diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-15 23:19:57 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-15 23:22:18 +0200 |
commit | 03f9a8c35be387f37badcd2c830ac7414ac17225 (patch) | |
tree | 722ab2e5d6e6e4397a65c326c1ad48bb36e72c6f | |
parent | 7233b19fde688d79d19ed1614a804c1d80f55260 (diff) | |
download | guix-03f9a8c35be387f37badcd2c830ac7414ac17225.tar.gz guix-03f9a8c35be387f37badcd2c830ac7414ac17225.zip |
Revert "gnu: rust: Add SSL native search paths."
This reverts commit ba1e4ce2560d51c8ba935e5b5667ba3a0133c694.
-rw-r--r-- | gnu/packages/rust.scm | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index dc373ef2bb..851a996e4b 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2017, 2018 Nikolai Merinov <nikolai.merinov@member.fsf.org> ;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il> -;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Danny Milosavljevic <dannym+a@scratchpost.org> ;;; Copyright © 2019 Ivan Petkov <ivanppetkov@gmail.com> ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> @@ -447,18 +447,7 @@ test = { path = \"../libtest\" } (files '("include/c++" "include"))) (search-path-specification (variable "LIBRARY_PATH") - (files '("lib" "lib64"))) - - ;; For cargo. - (search-path-specification - (variable "SSL_CERT_DIR") - (separator #f) - (files '("etc/ssl/certs"))) - (search-path-specification - (variable "SSL_CERT_FILE") - (file-type 'regular) - (separator #f) - (files '("etc/ssl/certs/ca-certificates.crt"))))) + (files '("lib" "lib64"))))) (synopsis "Compiler for the Rust progamming language") (description "Rust is a systems programming language that provides memory |