gnu: lexilla: Fix find-files regexp in install phase.

* gnu/packages/text-editors.scm (scintilla) [arguments]: Fix find-files regexp
in install phase.
This commit is contained in:
Maxim Cournoyer 2023-06-14 15:00:54 -04:00
parent 0e55391482
commit 1eac587fa6
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1029,7 +1029,7 @@ (define-public scintilla
(for-each (lambda (f) (install-file f lib))
(find-files "bin/" "\\.so$"))
(for-each (lambda (f) (install-file f inc))
(find-files "include/" "."))))))))
(find-files "include/" "\\.h$"))))))))
(native-inputs (list pkg-config python-wrapper))
(inputs (list gtk+))
(home-page "https://www.scintilla.org/")