unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 070373e049c66364c8ab2661249174d3bd640ced 1909 bytes (raw)
name: gnu/packages/chicken.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
45
46
47
48
49
50
 
(define-module (gnu packages chicken)
  #:use-module (gnu packages)
  #:use-module (guix packages)
  #:use-module (guix build-system gnu)
  #:use-module (guix download)
  #:use-module ((guix licenses)
                #:select (bsd-3))
  #:use-module (gnu packages commencement))

(define-public chicken
  (package
    (name "chicken")
    (version "5.1.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://code.call-cc.org/releases/"
                                  version "/chicken-" version ".tar.gz"))
              (sha256
               (base32
                "0jsbp3kp0134f318j3wpd1n85gf8qzh034fn198gvazsv2l024aw"))))
    (build-system gnu-build-system)
    (arguments
     `(#:modules ((guix build gnu-build-system)
                  (guix build utils)
                  (srfi srfi-1))

       ;; No `configure' script; run "make check" after "make install" as
       ;; prescribed by README.
       #:phases
       (modify-phases %standard-phases
         (delete 'configure)
         (delete 'check)
         (add-after 'install 'check
           (assoc-ref %standard-phases 'check)))

       #:make-flags (let ((out (assoc-ref %outputs "out")))
                      (list "PLATFORM=linux"
                            (string-append "PREFIX=" out)
                            (string-append "VARDIR=" out "/var/lib")))

       ;; Parallel builds are not supported, as noted in README.
       #:parallel-build? #f))
    (propagated-inputs `(("gcc-toolchain", gcc-toolchain)))
    (home-page "http://www.call-cc.org/")
    (synopsis "R5RS Scheme implementation that compiles native code via C")
    (description
     "CHICKEN is a compiler for the Scheme programming language.  CHICKEN
produces portable and efficient C, supports almost all of the R5RS Scheme
language standard, and includes many enhancements and extensions.")
    (license bsd-3)))

debug log:

solving 070373e049 ...
found 070373e049 in https://yhetil.org/guix-patches/Pod4njTh0oNnLtUyn240QVjYHM3CRpHq0MaYH7ZcxmP5JW53XkcYrLt6DVIz2Gd_lOfMhQLnA5MsaF0yHINsURh4PWZ3zW7tYNcLbX7RnJw=@elenq.tech/

applying [1/1] https://yhetil.org/guix-patches/Pod4njTh0oNnLtUyn240QVjYHM3CRpHq0MaYH7ZcxmP5JW53XkcYrLt6DVIz2Gd_lOfMhQLnA5MsaF0yHINsURh4PWZ3zW7tYNcLbX7RnJw=@elenq.tech/
diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
new file mode 100644
index 0000000000..070373e049

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

index at:
100644 070373e049c66364c8ab2661249174d3bd640ced	gnu/packages/chicken.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).