guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c7b7089963f2121e98e43bbf0838de305aad3b4b
Author: Junker <[email protected]>
AuthorDate: Sun Sep 28 14:43:21 2025 +0700
gnu: Add faber.
* gnu/packages/task-runners.scm (faber): New variable.
Change-Id: Ic6dbfa00b99cd979130d5142a3165a1ab4d7a03d
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/task-runners.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/task-runners.scm b/gnu/packages/task-runners.scm
index 5a71d41314..ee14343a71 100644
--- a/gnu/packages/task-runners.scm
+++ b/gnu/packages/task-runners.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2021 Ivan Gankevich <[email protected]>
;;; Copyright © 2024-2025 Sharlatan Hellseher <[email protected]>
;;; Copyright © 2025 Nicolas Graves <[email protected]>
+;;; Copyright © 2025 Junker <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -24,6 +25,8 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages golang-xyz)
#:use-module (gnu packages mail)
+ #:use-module (gnu packages scheme)
+ #:use-module (guix build-system copy)
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
#:use-module (guix download)
@@ -33,6 +36,31 @@
#:use-module (guix packages)
#:use-module (guix utils))
+(define-public faber
+ (package
+ (name "faber")
+ (version "0.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Junker/faber")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "17xjg92vwg7n06lx4xbsnd7wvsgqcw8h10ha5365rsfs49bd3cyf"))))
+ (inputs (list gauche))
+ (build-system copy-build-system)
+ (arguments
+ '(#:install-plan '(("faber" "bin/"))))
+ (synopsis "Task runner with power of Scheme")
+ (description "Faber is a CLI task runner designed to leverage the power and
+flexibility of Gauche Scheme.
+Unlike other build systems that rely on custom formats, Faber uses Gauche
+Scheme, allowing you to write build scripts using familiar Scheme syntax.")
+ (home-page "https://github.com/Junker/faber")
+ (license license:expat)))
+
(define-public run
(package
(name "run")