diff options
-rw-r--r-- | gnu/packages/text-editors.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 0094959cbb..9dd5d7793f 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2019, 2022 Efraim Flashner <[email protected]> ;;; Copyright © 2019 Andreas Enge <[email protected]> -;;; Copyright © 2019, 2020, 2021, 2022 Nicolas Goaziou <[email protected]> +;;; Copyright © 2019, 2020, 2021, 2022, 2023 Nicolas Goaziou <[email protected]> ;;; Copyright © 2020-2022 Marius Bakke <[email protected]> ;;; Copyright © 2020 Tom Zander <[email protected]> ;;; Copyright © 2020 Mark Meyer <[email protected]> @@ -991,14 +991,14 @@ The basic features of Text Pieces are: (define-public scintilla (package (name "scintilla") - (version "5.3.1") + (version "5.3.2") (source (origin (method url-fetch) (uri (let ((v (apply string-append (string-split version #\.)))) (string-append "https://www.scintilla.org/scintilla" v ".tgz"))) (sha256 - (base32 "13xh55qv8lqbnba4x0zhd3vp8flhs2vn4i8r79p7ix9yqimvamqg")))) + (base32 "16jskdc0762iwpy4s75vmp27qds32pnpaj09h48c6qg3rmvrgslh")))) (build-system gnu-build-system) (arguments (list |