mirror of https://codeberg.org/hako/Rosenthal.git
* rosenthal/packages/ssh.scm: New file. (dropbear/static): New variable.wip/index/refs/heads/trunk
parent
282ce91a06
commit
8496689f75
1 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@ |
||||
;; 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"))))))) |
Loading…
Reference in new issue