mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: txr: Update to 239.
* gnu/packages/lisp.scm (txr): Update to 239. [arguments]: Use cc-for-target.
This commit is contained in:
parent
66294d7cfe
commit
3a7fcfb34e
1 changed files with 4 additions and 7 deletions
|
@ -800,7 +800,7 @@ (define-public confusion-mdl
|
|||
(define-public txr
|
||||
(package
|
||||
(name "txr")
|
||||
(version "238")
|
||||
(version "239")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -809,15 +809,12 @@ (define-public txr
|
|||
(commit (string-append "txr-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0asdq4n828xb1m31s7f47mqcbjqkzxz11bwnw8v3f2249m93ync4"))))
|
||||
(base32 "1jldpkd5f855m3z4zjpd1ha64f405pcdwwrnr8jnk66v22dsvdwx"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(let ((target ,(%current-target-system)))
|
||||
(list (string-append "cc=" (if target
|
||||
(string-append target "-gcc")
|
||||
"gcc"))
|
||||
(string-append "--prefix=" (assoc-ref %outputs "out"))))
|
||||
(list ,(string-append "cc=" (cc-for-target))
|
||||
(string-append "--prefix=" (assoc-ref %outputs "out")))
|
||||
#:test-target "tests"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue