guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: guile-ssh: Move files from bin to examples directory.


From: Roel Janssen
Subject: 01/01: gnu: guile-ssh: Move files from bin to examples directory.
Date: Wed, 25 Apr 2018 08:57:42 -0400 (EDT)

roelj pushed a commit to branch master
in repository guix.

commit d000264299864480aa8b80357a3c6ae5ff2a5e74
Author: Roel Janssen <address@hidden>
Date:   Wed Apr 25 14:55:26 2018 +0200

    gnu: guile-ssh: Move files from bin to examples directory.
    
    * gnu/packages/ssh.scm (guile-ssh): Move files from bin to the examples
      directory.
---
 gnu/packages/ssh.scm | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index afd41cd..e4a277c 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -259,8 +259,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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]