mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
* gnu/packages/hare-apps.scm (bonsai): New variable. Change-Id: I4489911b111c48aeb9b084e685aaafa8adfd98e4 Signed-off-by: jgart <jgart@dismail.de>
62 lines
2.4 KiB
Scheme
62 lines
2.4 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2025 jgart <jgart@dismail.de>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages hare-apps)
|
|
#:use-module (gnu packages hare-xyz)
|
|
#:use-module (guix build-system hare)
|
|
#:use-module (guix git-download)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages))
|
|
|
|
(define-public bonsai
|
|
(package
|
|
(name "bonsai")
|
|
(version "1.3.0")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://git.sr.ht/~stacyharper/bonsai")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "148rccbh5alpnz36ricv8y26qyrqwm4g7mj936vpwrxwd9dkwmff"))))
|
|
(build-system hare-build-system)
|
|
(inputs (list hare-ev hare-json))
|
|
(supported-systems %hare-supported-systems)
|
|
(home-page "https://bonsai.builtwithhare.org")
|
|
(synopsis "Finite State Machine structured as a tree that trigger commands")
|
|
(description "Bonsai is a Finite State Machine structured as a tree. It
|
|
has been designed to trigger commands when successive events and/or a precise
|
|
context is accepted. There is 4 kind of transition with specific acceptance
|
|
rules:
|
|
|
|
@itemize
|
|
@item event transition: The received event name match the transition
|
|
one
|
|
@item context transition: The state context match the transition one @item
|
|
exec transition: The transition command is run and succeed
|
|
@item delay
|
|
transition: The state wait for the delay transition duration. No other
|
|
accepted event is received while waiting
|
|
@end itemize
|
|
|
|
The state will transition following every accepted transition. If there is no
|
|
more available transition, the state goes back to the initial position.")
|
|
(license license:agpl3+)))
|
|
|