diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 15:39:44 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-31 14:54:02 -0400 |
commit | a3605b59c6b0cb4595f5f05e9167518ba2a6923c (patch) | |
tree | cf7302e5b1c9627e1efbfff3230d510655d89790 | |
parent | be672f1f7f0cda28823ef4a4260f39bc845cbabe (diff) | |
download | guix-a3605b59c6b0cb4595f5f05e9167518ba2a6923c.tar guix-a3605b59c6b0cb4595f5f05e9167518ba2a6923c.tar.gz |
gnu: icecat: Remove obsolete Python 2 dependencies.
* gnu/packages/gnuzilla.scm (icecat)[native-inputs]: Remove python-2 and
python2-pysqlite. Replace python by python-wrapper.
-rw-r--r-- | gnu/packages/gnuzilla.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 4728b5e347..006191c9bd 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be> -;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2021 Baptiste Strazzul <bstrazzull@hotmail.fr> ;;; ;;; This file is part of GNU Guix. @@ -974,9 +974,7 @@ in C/C++.") ("clang" ,clang-11) ("perl" ,perl) ("node" ,node) - ("python" ,python) - ("python-2" ,python-2) - ("python2-pysqlite" ,python2-pysqlite) + ("python" ,python-wrapper) ("yasm" ,yasm) ("nasm" ,nasm) ; XXX FIXME: only needed on x86_64 and i686 ("pkg-config" ,pkg-config) |