summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunker <dk@junkeria.club>2025-09-28 14:43:21 +0700
committerLudovic Courtès <ludo@gnu.org>2025-09-29 15:28:08 +0200
commitc7b7089963f2121e98e43bbf0838de305aad3b4b (patch)
tree888c307fc5e98b6b111a602d1bc5a4a97d8c56f6
parent04120f69dde0f00e3a0360b2eda638381602b6c9 (diff)
gnu: Add faber.
* gnu/packages/task-runners.scm (faber): New variable. Change-Id: Ic6dbfa00b99cd979130d5142a3165a1ab4d7a03d Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/task-runners.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/task-runners.scm b/gnu/packages/task-runners.scm
index 5a71d41314f..ee14343a715 100644
--- a/gnu/packages/task-runners.scm
+++ b/gnu/packages/task-runners.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
;;; Copyright © 2024-2025 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2025 Junker <dk@junkeria.club>
;;;
;;; 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")