gnu: scintilla: Update to 5.1.0.
* gnu/packages/text-editors.scm (scintilla): Update to 5.1.0.
This commit is contained in:
parent
468caeb701
commit
8107e92aa3
1 changed files with 3 additions and 4 deletions
|
@ -892,14 +892,14 @@ Octave. TeXmacs is completely extensible via Guile.")
|
||||||
(define-public scintilla
|
(define-public scintilla
|
||||||
(package
|
(package
|
||||||
(name "scintilla")
|
(name "scintilla")
|
||||||
(version "5.0.1")
|
(version "5.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (let ((v (apply string-append (string-split version #\.))))
|
(uri (let ((v (apply string-append (string-split version #\.))))
|
||||||
(string-append "https://www.scintilla.org/scintilla" v ".tgz")))
|
(string-append "https://www.scintilla.org/scintilla" v ".tgz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0w5550fijkhmzvdydd8770qq9dgnbq1sd0a8rn4g6mwyfpcyhbfy"))))
|
(base32 "0figd543inpi00yr6han73qd2fzx99r099vzcbg9mhpzsgxfwz4f"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags (list "GTK3=1" "CC=gcc" "-Cgtk")
|
`(#:make-flags (list "GTK3=1" "CC=gcc" "-Cgtk")
|
||||||
|
@ -916,8 +916,7 @@ Octave. TeXmacs is completely extensible via Guile.")
|
||||||
(for-each (lambda (f) (install-file f lib))
|
(for-each (lambda (f) (install-file f lib))
|
||||||
(find-files "bin/" "\\.so$"))
|
(find-files "bin/" "\\.so$"))
|
||||||
(for-each (lambda (f) (install-file f include))
|
(for-each (lambda (f) (install-file f include))
|
||||||
(find-files "include/" "."))
|
(find-files "include/" "."))))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gcc" ,gcc-9) ;Code has C++17 requirements
|
`(("gcc" ,gcc-9) ;Code has C++17 requirements
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
|
|
Reference in a new issue