diff options
author | Mark H Weaver <mhw@netris.org> | 2020-01-08 23:04:13 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2020-01-09 14:07:47 -0500 |
commit | 5d3db373bafe159bb3e04dc21e76edbfc0ecb9ac (patch) | |
tree | e344da9aa89e91ca6edd827e4a7e4f640725f823 /gnu | |
parent | 2c50e52ab8228634ce1626dc174970f4a4321d61 (diff) | |
download | guix-5d3db373bafe159bb3e04dc21e76edbfc0ecb9ac.tar guix-5d3db373bafe159bb3e04dc21e76edbfc0ecb9ac.tar.gz |
gnu: dillo: Fix SSL support.
* gnu/packages/web-browsers.scm (dillo)[inputs]: Use openssl-1.0
in place of openssl.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web-browsers.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index e5df56493e..137dccab81 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 John Darrington <jmd@gnu.org> -;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> +;;; Copyright © 2014, 2019 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015, 2016, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org> @@ -84,7 +84,7 @@ ("libxft" ,libxft) ("libxi" ,libxi) ("libxinerama" ,libxinerama) - ("openssl" ,openssl) + ("openssl" ,openssl-1.0) ;XXX try latest openssl for dillo > 3.0.5 ("perl" ,perl) ("zlib" ,zlib))) (synopsis "Very small and fast graphical web browser") |