1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-20 09:10:30 +02:00

gnu: hare-lex: Update to 0.26.0.0.

* gnu/packages/hare-xyz.scm (hare-lex): Update to 0.26.0.0.
  [phases]{install}: Replace with haredo.
  [phases]{check}: Deleted phase.
  [phases]{build}: Deleted phase.
  [phases]{set-environment}: Added new phase.

Change-Id: Ibc776c040568d52d3f5203718ae636644d9753d1
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Nemin
2026-02-14 11:00:09 +01:00
committed by jgart
parent 9207ce6874
commit 02bf4e50a6

View File

@@ -21,6 +21,7 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
#:use-module (gnu packages hare-apps)
#:use-module (guix build-system hare)
#:use-module (guix download)
#:use-module (guix gexp)
@@ -91,7 +92,7 @@
(define-public hare-lex
(package
(name "hare-lex")
(version "0.25.2.3")
(version "0.26.0.0")
(source
(origin
(method git-fetch)
@@ -100,9 +101,27 @@
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "06jlkb1q8ybr6yx56c6ikxv5ywz44k04dpwxcc796cnpzpkgqlyf"))))
(base32 "1ps7byn8kdkfj8drxlmpc8dqzfbrvkpjqz7af4k2cmmg7k0y0rkl"))))
(native-inputs (list haredo))
(build-system hare-build-system)
(supported-systems %hare-supported-systems)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(delete 'build)
(delete 'check)
(add-before 'install 'substitute-vars
(lambda _
(substitute* "./install.do"
(("PREFIX=.*") (format #f "PREFIX=\"~a\"~%" #$output))
(("SRCDIR=.*") (format #f "SRCDIR=\"~a/share/hare\"~%" #$output))
(("HARESRCDIR=.*") (format #f "HARESRC=\"~a/share/hare\"~%" #$output))
(("THIRDPARTYDIR=.*") (format #f "THIRDPARTYDIR=\"~a/share/hare\"~%" #$output)))))
(replace 'install
(lambda _
(setenv "PREFIX" #$output)
(invoke "haredo" "install"))))))
(home-page "https://git.sr.ht/~stacyharper/hare-lex")
(synopsis "General purpose lexical tokenization machinery for Hare")
(description "This module provides a general purpose lexer machine for Hare.")