gnu: lispf4: Remove unused inputs key.
* gnu/packages/lisp.scm (lispf4)[arguments]: Remove unused inputs key from 'install' phase. [source](file-name): Append "-checkout" to the file-name. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
8feb56b0d4
commit
0a1d8596fd
|
@ -453,7 +453,7 @@ interface.")
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/blakemcbride/LISPF4.git")
|
(url "https://github.com/blakemcbride/LISPF4.git")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (string-append name "-" version))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"18k8kfn30za637y4bfbm9x3vv4psa3q8f7bi9h4h0qlb8rz8m92c"))))
|
"18k8kfn30za637y4bfbm9x3vv4psa3q8f7bi9h4h0qlb8rz8m92c"))))
|
||||||
|
@ -463,14 +463,12 @@ interface.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
'("-f" "Makefile.unx" "CC=gcc")
|
'("-f" "Makefile.unx" "CC=gcc")
|
||||||
;; no check phase
|
#:tests? #f ; No 'check phase
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(replace
|
(replace 'install
|
||||||
'install
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin"))
|
(bin (string-append out "/bin"))
|
||||||
(doc (string-append (assoc-ref outputs "doc")
|
(doc (string-append (assoc-ref outputs "doc")
|
||||||
|
|
Loading…
Reference in New Issue