diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2019-11-01 15:05:28 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2019-11-01 15:05:28 +0100 |
commit | 40e513fe54f01a1e2d775000cb512e3f3755fe8f (patch) | |
tree | 94ff6071c46c7145202e2fc4e4ddebdf12be91f2 /gnu/packages/text-editors.scm | |
parent | b36726af09677916588ab71f560866f047eeaed3 (diff) | |
download | patches-40e513fe54f01a1e2d775000cb512e3f3755fe8f.tar patches-40e513fe54f01a1e2d775000cb512e3f3755fe8f.tar.gz |
gnu: geany: Update to 1.36.
* gnu/packages/text-editors.scm (geany): Update to 1.36.
Diffstat (limited to 'gnu/packages/text-editors.scm')
-rw-r--r-- | gnu/packages/text-editors.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 67840a345e..dbb3700856 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -497,14 +497,14 @@ and multiple fonts.") (define-public geany (package (name "geany") - (version "1.35") + (version "1.36") (source (origin (method url-fetch) (uri (string-append "https://download.geany.org/" "geany-" version ".tar.bz2")) (sha256 (base32 - "179xfnvhcxsv54v2mlrhykqv2j7klniln5sffvqqpjmdvwyivvim")) + "0gnm17cr4rf3pmkf0axz4a0fxwnvp55ji0q0lzy88yqbshyxv14i")) (modules '((guix build utils))) (snippet '(begin (delete-file-recursively "scintilla") @@ -537,6 +537,8 @@ and multiple fonts.") (("geany_LDFLAGS =" all) (string-append all " -lscintilla"))) (substitute* "doc/Makefile.am" (("\\$\\(INSTALL_DATA\\) \\$\\(top_srcdir\\)/scintilla/License.txt \\$\\(DOCDIR\\)/ScintillaLicense.txt") "")) + (substitute* "tests/Makefile.am" + (("AM_LDFLAGS =" all) (string-append all " -lscintilla"))) (for-each delete-file (list "autogen.sh" "configure" "Makefile.in")) #t))))) (home-page "https://www.geany.org") |