mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add faber.
* gnu/packages/task-runners.scm (faber): New variable. Change-Id: Ic6dbfa00b99cd979130d5142a3165a1ab4d7a03d Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
04120f69dd
commit
c7b7089963
1 changed files with 28 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue