mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: cbqn: Install regular files rather than copying them recursively.
* gnu/packages/bqn.scm (cbqn)[#:phases]<install>: Use ‘install-file’ rather than ‘copy-recursively’ for “bqn”.
This commit is contained in:
parent
3eca71d4a7
commit
a75a5ac4fc
1 changed files with 2 additions and 2 deletions
|
@ -198,8 +198,8 @@ (define-public cbqn
|
|||
(lib (string-append (assoc-ref outputs "lib")
|
||||
"/lib")))
|
||||
(mkdir-p bin)
|
||||
(copy-recursively "BQN"
|
||||
(string-append bin "/bqn"))
|
||||
(rename-file "BQN" "bqn")
|
||||
(install-file "bqn" bin)
|
||||
(install-file "libcbqn.so" lib))))))))
|
||||
(native-inputs (list dbqn
|
||||
bqn-sources
|
||||
|
|
Loading…
Reference in a new issue