mirror of https://codeberg.org/hako/Rosenthal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
876 B
27 lines
876 B
2 years ago
|
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space>
|
||
|
;;
|
||
|
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
(define-module (rosenthal packages ssh)
|
||
|
#:use-module (guix gexp)
|
||
|
#:use-module (guix packages)
|
||
|
#:use-module (guix utils)
|
||
|
#:use-module (gnu packages compression)
|
||
|
#:use-module (gnu packages multiprecision)
|
||
|
#:use-module (gnu packages ssh))
|
||
|
|
||
|
(define-public dropbear/static
|
||
|
(let ((base dropbear))
|
||
|
(package
|
||
|
(inherit dropbear)
|
||
|
(name "dropbear-static")
|
||
|
(arguments
|
||
|
(substitute-keyword-arguments (package-arguments base)
|
||
|
((#:configure-flags flags)
|
||
|
#~(append #$flags (list "--enable-static")))))
|
||
|
(inputs
|
||
|
(modify-inputs (package-inputs base)
|
||
|
(append `(,zlib "static"))
|
||
|
(replace "libtomcrypt" `(,libtomcrypt "static"))
|
||
|
(replace "libtommath" `(,libtommath "static")))))))
|