gnu: emacs-svg-icon: Fix grammar.
[jackhill/guix/guix.git] / gnu / packages / task-runners.scm
CommitLineData
adae5d75
SR
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages task-runners)
20 #:use-module ((guix licenses) #:prefix license:)
21 #:use-module (guix packages)
22 #:use-module (guix git-download)
23 #:use-module (gnu packages golang)
24 #:use-module (guix build-system go))
25
26(define-public run
27 (package
28 (name "run")
29 (version "0.7.2")
30 (source
31 (origin
32 (method git-fetch)
33 (uri (git-reference
34 (url "https://github.com/TekWizely/run")
35 (commit (string-append "v" version))))
36 (file-name (git-file-name name version))
37 (sha256
38 (base32 "17n11lqhywq4z62w2rakdq80v7mxf83rgln19vj4v4nxpwd2hjjw"))))
39 (build-system go-build-system)
40 (propagated-inputs
41 `(("go-github-com-tekwizely-go-parsing" ,go-github-com-tekwizely-go-parsing)))
42 (arguments
43 `(#:import-path "github.com/tekwizely/run"))
44 (synopsis "Easily manage and invoke small scripts and wrappers")
45 (description
46 "Run is a tool to easily manage and invoke small scripts and wrappers by
47using a Runfile.")
48 (home-page "https://github.com/TekWizely/run")
49 (license license:expat)))