all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 6fc001c0d7371050532e68ac0c5b0a7c096998dd 1589 bytes (raw)
name: gnu/packages/rc.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
44
 
(define-module (gnu packages rc)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages readline)
  #:use-module (guix build gnu-build-system)
  #:use-module (guix build utils)
  #:use-module (guix build-system gnu)
  #:use-module (guix download)
  #:use-module (guix licenses)
  #:use-module (guix packages))


(define-public rc
  (package
    (name "rc")
    (version "1.7.4")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://github.com/rakitzis/rc/tarball/"
                                  "c884da53a7c885d46ace2b92de78946855b18e92"))
              (sha256
               (base32 "05hlnqcxaw08m1xypk733hajwaap5pr354ndmrm86k0flisjk0fw"))))
    (build-system gnu-build-system)
    (arguments `(#:configure-flags
		 '("--with-edit=gnu")
		 #:phases
		 (modify-phases %standard-phases
		   (add-before 'configure 'autoreconf (lambda _
							(zero? (system* "autoreconf" "-vfi")))))
		 #:tests? #f))
    (inputs `(("readline" ,readline)
	      ("perl" ,perl)))
    (native-inputs `(("autoconf" ,autoconf)
		     ("automake" ,automake)
		     ("libtool" ,libtool)
		     ("pkg-config" ,pkg-config)))
    (synopsis "An alternative implementation of the plan 9 rc shell.")
    (description
     "This is a reimplementation for Unix, by Byron Rakitzis, of
the Plan 9 shell. It has a small feature set similar to a traditional Bourne
shell, but with a much cleaner and simpler syntax.")
    (home-page "http://github.com/rakitzis/rc")
    (license zlib)))

debug log:

solving 6fc001c ...
found 6fc001c in https://yhetil.org/guix/871tggddtr.fsf@codemac.net/

applying [1/1] https://yhetil.org/guix/871tggddtr.fsf@codemac.net/
diff --git a/gnu/packages/rc.scm b/gnu/packages/rc.scm
new file mode 100644
index 0000000..6fc001c

Checking patch gnu/packages/rc.scm...
Applied patch gnu/packages/rc.scm cleanly.

index at:
100644 6fc001c0d7371050532e68ac0c5b0a7c096998dd	gnu/packages/rc.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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.