diff options
| author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2026-04-05 10:46:22 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 22:57:57 +0100 |
| commit | 17d745cf3fafd58b0fdd59bc2f45bedbf3ca388e (patch) | |
| tree | 188f0ebff47b90dc2f3bd032b66452e08dffc9b8 /gnu/packages | |
| parent | fa2ad6b8b965bf709ec244c044ba6e5171dd506c (diff) | |
gnu: es: Update to 0.10.0 and fix build.
* gnu/packages/shells.scm (es): Update to 0.10.0.
[source]: Switch to git-fetch.
[native-inputs]: Add autoconf-2.72, automake, config, and procps, remove bison.
Merges: https://codeberg.org/guix/guix/pulls/7680
Change-Id: Ia159e315ed9006fdc6f63842918e97b2218483a1
Reviewed-by: Jonas Meeuws <jonas.meeuws@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/shells.scm | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 6b22d2fbba6..e500c156c9b 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -403,22 +403,26 @@ has a small feature set similar to a traditional Bourne shell.") (define-public es (package (name "es") - (version "0.9.2") + (version "0.10.0") (source (origin - (method url-fetch/tarbomb) - (uri (string-append "https://github.com/wryun/es-shell/releases/" - "download/v" version "/es-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/wryun/es-shell") + (commit (string-append "v" version)))) (sha256 - (base32 "1pgmqhsk14wyvl489sxdy7kdl2gwrsq1xvkip0z90kh888mlh9n9")) - (file-name (string-append name "-" version ".tar.gz")))) + (base32 "11zykg28r018vl9n0sw82jwv3m2yk1r9d25y2mjrvpkxf0dj2va6")) + (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments - (list #:test-target "test")) + (list + #:test-target "test")) (inputs (list readline)) (native-inputs - (list bison)) + (list autoconf-2.72 ;2.69 does not detect that some files are missing + automake + procps)) ;for tests (synopsis "Extensible shell with higher-order functions") (description "Es is an extensible shell. The language was derived from the Plan 9 |
