[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: scintilla: Use string-delete to compute source URL.
From: |
guix-commits |
Subject: |
01/03: gnu: scintilla: Use string-delete to compute source URL. |
Date: |
Wed, 14 Jun 2023 15:33:49 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 0e5539148244077215a984af9347a739c65e7ccb
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Jun 14 13:58:24 2023 -0400
gnu: scintilla: Use string-delete to compute source URL.
* gnu/packages/text-editors.scm (scintilla) [source]: Use string-delete
instead of string-split and string-append.
---
gnu/packages/text-editors.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index b23c5ba2be..c4c2893009 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1006,8 +1006,8 @@ The basic features of Text Pieces are:
(source
(origin
(method url-fetch)
- (uri (let ((v (apply string-append (string-split version #\.))))
- (string-append "https://www.scintilla.org/scintilla" v ".tgz")))
+ (uri (string-append "https://www.scintilla.org/scintilla"
+ (string-delete #\. version) ".tgz"))
(sha256
(base32 "0inbhzqdikisvnbdzn8153p1apbghxjzkkzji9i8zsdpyapb209z"))))
(build-system gnu-build-system)
@@ -1030,10 +1030,8 @@ The basic features of Text Pieces are:
(find-files "bin/" "\\.so$"))
(for-each (lambda (f) (install-file f inc))
(find-files "include/" "."))))))))
- (native-inputs
- (list pkg-config python-wrapper))
- (inputs
- (list gtk+))
+ (native-inputs (list pkg-config python-wrapper))
+ (inputs (list gtk+))
(home-page "https://www.scintilla.org/")
(synopsis "Code editor for GTK+")
(description "Scintilla is a source code editing component for