mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge branch 'master' into core-updates
This commit is contained in:
commit
3d5ad159b3
105 changed files with 29149 additions and 23582 deletions
|
@ -258,8 +258,20 @@ Additionally, various channel-specific options can be negotiated.")
|
|||
(substitute* (find-files "." "\\.scm$")
|
||||
(("\"libguile-ssh\"")
|
||||
(string-append "\"" libdir "/libguile-ssh\"")))
|
||||
#t)))))
|
||||
|
||||
#t))))
|
||||
(add-after 'install 'remove-bin-directory
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin"))
|
||||
(examples (string-append
|
||||
out "/share/guile-ssh/examples")))
|
||||
(mkdir-p examples)
|
||||
(rename-file (string-append bin "/ssshd.scm")
|
||||
(string-append examples "/ssshd.scm"))
|
||||
(rename-file (string-append bin "/sssh.scm")
|
||||
(string-append examples "/sssh.scm"))
|
||||
(delete-file-recursively bin)
|
||||
#t))))
|
||||
;; Tests are not parallel-safe.
|
||||
#:parallel-tests? #f))
|
||||
(native-inputs `(("autoconf" ,autoconf)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue