diff options
author | ng0 <ng0@we.make.ritual.n0.is> | 2016-09-12 13:57:56 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-09-13 15:00:02 -0400 |
commit | 0a1d8596fd1f8465e619058bf88763bae3b1cd5d (patch) | |
tree | 84feaa4d9605b0b97d69962c15379dc863a76d7c /gnu/packages/lisp.scm | |
parent | 8feb56b0d4399dc93207a061ddb8582558d3b8cb (diff) | |
download | guix-0a1d8596fd1f8465e619058bf88763bae3b1cd5d.tar guix-0a1d8596fd1f8465e619058bf88763bae3b1cd5d.tar.gz |
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>
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 8ee249d397..43fb195763 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -453,7 +453,7 @@ interface.") (uri (git-reference (url "https://github.com/blakemcbride/LISPF4.git") (commit commit))) - (file-name (string-append name "-" version)) + (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "18k8kfn30za637y4bfbm9x3vv4psa3q8f7bi9h4h0qlb8rz8m92c")))) @@ -463,14 +463,12 @@ interface.") (arguments `(#:make-flags '("-f" "Makefile.unx" "CC=gcc") - ;; no check phase - #:tests? #f + #:tests? #f ; No 'check phase #:phases (modify-phases %standard-phases (delete 'configure) - (replace - 'install - (lambda* (#:key outputs inputs #:allow-other-keys) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (doc (string-append (assoc-ref outputs "doc") |