1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
;;; guix.scm -- GNU Guix package definition.
;; Copyright (C) 2022-2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;
;; This file is a part of Guile-SSH.
;;
;; Guile-SSH is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;;
;; Guile-SSH is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Guile-SSH. If not, see
;; <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Use this file to build Guile-SSH with GNU Guix:
;;
;; guix build -f guix.scm
;;
;; By default Guile-SSH builds with libssh 0.10, but it is possible to switch
;; it to libssh 0.9 by exporting an environment variable:
;;
;; export GUILE_SSH_BUILD_WITH_LIBSSH_0_9=1
;; guix build -f guix.scm
;;; Code:
(use-modules (guix gexp)
((guix licenses) #:prefix license:)
(guix packages)
(guix git-download)
(guix download)
(guix utils)
(guix build-system cmake)
(guix build-system gnu)
(gnu packages autotools)
(gnu packages guile)
(gnu packages ssh)
(gnu packages compression)
(gnu packages kerberos)
(gnu packages gnupg)
(gnu packages texinfo)
(gnu packages python)
(gnu packages pkg-config)
(gnu packages base))
(define %source-dir (dirname (current-filename)))
(define-public libssh10
(package
(name "libssh")
(version "0.10.0")
(source (origin
(method url-fetch)
(uri (string-append "https://www.libssh.org/files/"
(version-major+minor version)
"/libssh-" version ".tar.xz"))
(sha256
(base32
"0mqbmz97p6wcq3k3lllnw2khvr3db3n2va45nz88m0yd6k2mih8d"))))
(build-system cmake-build-system)
(outputs '("out" "debug"))
(arguments
'(#:configure-flags '("-DWITH_GCRYPT=ON")
;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite.
#:tests? #f))
(inputs (list zlib libgcrypt mit-krb5))
(synopsis "SSH client library")
(description
"libssh is a C library implementing the SSHv2 and SSHv1 protocol for client
and server implementations. With libssh, you can remotely execute programs,
transfer files, and use a secure and transparent tunnel for your remote
applications.")
(home-page "https://www.libssh.org")
(license license:lgpl2.1+)))
(define-public libssh8-0
(package
(inherit libssh10)
(name "libssh")
(version "0.8.0")
(source (origin
(method url-fetch)
(uri (string-append "https://www.libssh.org/files/"
(version-major+minor version)
"/libssh-" version ".tar.xz"))
(sha256
(base32
"1amgzvabl835vvzyv08hr05ak2ksp4jncbfnm2i0ayspf3b5qdg0"))))
(native-inputs (list python))))
(define-public libssh8-1
(package
(inherit libssh10)
(name "libssh")
(version "0.8.1")
(source (origin
(method url-fetch)
(uri (string-append "https://www.libssh.org/files/"
(version-major+minor version)
"/libssh-" version ".tar.xz"))
(sha256
(base32
"090r1fq8p89rwfv2x3wji3kyz31bf0z9mlv6pq7nrr55niki4zyi"))))
(native-inputs (list python))))
(define-public libssh8
(package
(inherit libssh10)
(name "libssh")
(version "0.8.3")
(source (origin
(method url-fetch)
(uri (string-append "https://www.libssh.org/files/"
(version-major+minor version)
"/libssh-" version ".tar.xz"))
(sha256
(base32
"1l19pl0l8lp00a8yawvf2yp8xhb4fjgsdmvprv9qqdpj0vv32brh")))) ))
(define-public libssh9
(package
(inherit libssh)
(name "libssh")
(version "0.9.0")
(source (origin
(method url-fetch)
(uri (string-append "https://www.libssh.org/files/"
(version-major+minor version)
"/libssh-" version ".tar.xz"))
(sha256
(base32
"19f7h8s044pqfhfk35ky5lj4hvqhi2p2p46xkwbcsqz6jllkqc15"))))))
(define-public libssh11
(package
(inherit libssh)
(name "libssh")
(version "0.11.1")
(source (origin
(method url-fetch)
(uri (string-append "https://www.libssh.org/files/"
(version-major+minor version)
"/libssh-" version ".tar.xz"))
(sha256
(base32
"0y8v5ihrqnjxchvjhz8fcczndchaaxxim64bqm8q3q4i5v3xrdql"))))))
(define-public guile-ssh
(package
(name "guile-ssh")
(version "git")
(home-page "https://github.com/artyom-poptsov/guile-ssh")
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
(build-system gnu-build-system)
(outputs '("out" "debug"))
(arguments
`(;; It makes no sense to build libguile-ssh.a.
#:configure-flags '("--disable-static")
#:phases (modify-phases %standard-phases
(add-before 'build 'fix-libguile-ssh-file-name
(lambda* (#:key outputs #:allow-other-keys)
;; Build and install libguile-ssh.so so that we can use
;; its absolute file name in .scm files, before we build
;; the .go files.
(let* ((out (assoc-ref outputs "out"))
(lib (string-append out "/lib")))
(invoke "make" "install"
"-C" "libguile-ssh"
"-j" (number->string
(parallel-job-count)))
(substitute* (find-files "." "\\.scm$")
(("\"libguile-ssh\"")
(string-append "\"" lib "/libguile-ssh\"")))
#t)))
,@(if (%current-target-system)
'()
'((add-before 'check 'fix-guile-path
(lambda* (#:key inputs #:allow-other-keys)
(let ((guile (assoc-ref inputs "guile")))
(substitute* "tests/common.scm"
(("/usr/bin/guile")
(string-append guile "/bin/guile")))
#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))))))
(native-inputs (list autoconf
automake
libtool
texinfo
pkg-config
which
guile-3.0)) ;needed when cross-compiling.
(inputs (list guile-3.0 libssh10 libgcrypt))
(synopsis "Guile bindings to libssh")
(description
"Guile-SSH is a library that provides access to the SSH protocol for
programs written in GNU Guile interpreter. It is a wrapper to the underlying
libssh library.")
(license license:gpl3+)))
(define-public guile-ssh/libssh8-0
(package
(inherit guile-ssh)
(name "guile-ssh")
(inputs (modify-inputs (package-inputs guile-ssh)
(replace "libssh" libssh8-0)))))
(define-public guile-ssh/libssh8-1
(package
(inherit guile-ssh)
(name "guile-ssh")
(inputs (modify-inputs (package-inputs guile-ssh)
(replace "libssh" libssh8-1)))))
(define-public guile-ssh/libssh8
(package
(inherit guile-ssh)
(name "guile-ssh")
(inputs (modify-inputs (package-inputs guile-ssh)
(replace "libssh" libssh8)))))
(define-public guile-ssh/libssh9
(package
(inherit guile-ssh)
(name "guile-ssh")
(inputs (modify-inputs (package-inputs guile-ssh)
(replace "libssh" libssh9)))))
(define-public guile-ssh/libssh11
(package
(inherit guile-ssh)
(name "guile-ssh")
(inputs (modify-inputs (package-inputs guile-ssh)
(replace "libssh" libssh11)))))
(cond
((getenv "GUILE_SSH_BUILD_WITH_LIBSSH_0_8_0")
guile-ssh/libssh8-0)
((getenv "GUILE_SSH_BUILD_WITH_LIBSSH_0_8_1")
guile-ssh/libssh8-1)
((getenv "GUILE_SSH_BUILD_WITH_LIBSSH_0_8")
guile-ssh/libssh8)
((getenv "GUILE_SSH_BUILD_WITH_LIBSSH_0_9")
guile-ssh/libssh9)
((getenv "GUILE_SSH_BUILD_WITH_LIBSSH_0_11")
guile-ssh/libssh11)
(else
guile-ssh))
;;; guix.scm ends here.
|