blob 8cb1dcacba5f1324d5cd10f8cb1fa27b0212aedf 1716 bytes (raw)
name: gnu/packages/entr.scm # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| | (define-module (gnu packages entr)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (gnu packages less))
(define-public entr
(package
(name "entr")
(version "3.5")
(source
(origin
(method url-fetch)
(uri (string-append "http://entrproject.org/code/entr-"
version ".tar.gz"))
(sha256
(base32
"05k4jyjna0pr2dalwc1l1dhrcyk6pw7hbss7jl4ykwfadcs5br73"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
#:phases
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(setenv "CONFIG_SHELL" (which "bash"))
(setenv "CC" (which "gcc"))
(setenv "DESTDIR" (string-append out "/"))
(setenv "PREFIX" "")
(setenv "MANPREFIX" "man")
(system* "./configure")))))))
(home-page "http://entrproject.org/")
(synopsis "Run arbitrary commands when files change")
(description
"entr is a zero-configuration tool with no external build or
runtime dependencies. The interface to entr is not only minimal, it
aims to be simple enough to create a new category of ad hoc
automation. These micro-tests reduce keystrokes, but more importantly
they emphasize the utility of automated checks.")
(license isc)))
|
debug log:
solving 8cb1dca ...
found 8cb1dca in https://yhetil.org/guix-devel/87wpn0ofn8.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me/
applying [1/1] https://yhetil.org/guix-devel/87wpn0ofn8.fsf@mailerver.i-did-not-set--mail-host-address--so-tickle-me/
diff --git a/gnu/packages/entr.scm b/gnu/packages/entr.scm
new file mode 100644
index 0000000..8cb1dca
Checking patch gnu/packages/entr.scm...
Applied patch gnu/packages/entr.scm cleanly.
index at:
100644 8cb1dcacba5f1324d5cd10f8cb1fa27b0212aedf gnu/packages/entr.scm
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).