mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: sbcl-cmd: Remove dead code.
* gnu/packages/lisp-xyz.scm (sbcl-cmd)[arguments]: Remove dead code. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
fb51912d37
commit
60528f9ba7
1 changed files with 3 additions and 3 deletions
|
@ -22,6 +22,7 @@
|
|||
;;; Copyright © 2020, 2021 Adam Kandur <rndd@tuta.io>
|
||||
;;; Copyright © 2020, 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2021 Aurora <rind38@disroot.org>
|
||||
;;; Copyright © 2021 Matthew Kraai <kraai@ftbfs.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -13224,9 +13225,8 @@ (define-public sbcl-cmd
|
|||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((source (assoc-ref inputs "source"))
|
||||
(bin (string-append (assoc-ref inputs "coreutils") "/bin")))
|
||||
(substitute* (string-append "cmd.lisp")
|
||||
(let ((bin (string-append (assoc-ref inputs "coreutils") "/bin")))
|
||||
(substitute* "cmd.lisp"
|
||||
(("\"env\"") (format #f "\"~a/env\"" bin))
|
||||
(("\"pwd\"") (format #f "\"~a/pwd\"" bin)))))))))
|
||||
(home-page "https://github.com/ruricolist/cmd")
|
||||
|
|
Loading…
Reference in a new issue