mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-07-22 20:38:26 +00:00
rosenthal: tuwunel-bin: Update to 1.6.0.
* modules/rosenthal/packages/binaries.scm (tuwunel-bin): Update to 1.6.0. [build-system]: Switch to gnu-build-system.
This commit is contained in:
parent
cc5a4a0baa
commit
063f1fa1b7
@ -161,7 +161,7 @@ host Matrix for your family, friends or company.")
|
|||||||
(define-public tuwunel-bin
|
(define-public tuwunel-bin
|
||||||
(package
|
(package
|
||||||
(name "tuwunel-bin")
|
(name "tuwunel-bin")
|
||||||
(version "1.5.1")
|
(version "1.6.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
@ -171,17 +171,31 @@ host Matrix for your family, friends or company.")
|
|||||||
(file-name (string-append name "-" version ".zst"))
|
(file-name (string-append name "-" version ".zst"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"00kpapzd7alm3g34ijfhwszc1x1ddd4ykcyk8ah73gmyc2lq8gys"))))
|
"052lp7iv9dpcryy9j1vgi9j6l6gd3n8971kmi46js79pxfwsa9x9"))))
|
||||||
(build-system copy-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? (not (%current-target-system))
|
(list #:tests? (not (%current-target-system))
|
||||||
#:install-plan
|
#:imported-modules
|
||||||
#~'((#$(format #f "~a-~a"
|
(append %default-gnu-imported-modules
|
||||||
(package-name this-package)
|
%copy-build-system-modules)
|
||||||
(package-version this-package))
|
#:modules
|
||||||
"bin/tuwunel"))
|
'((guix build utils)
|
||||||
|
(guix build gnu-build-system)
|
||||||
|
((guix build copy-build-system) #:prefix copy:))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(delete 'build)
|
||||||
|
(delete 'check)
|
||||||
|
(replace 'install
|
||||||
|
(lambda args
|
||||||
|
(apply (assoc-ref copy:%standard-phases 'install)
|
||||||
|
#:install-plan
|
||||||
|
'((#$(format #f "~a-~a"
|
||||||
|
(package-name this-package)
|
||||||
|
(package-version this-package))
|
||||||
|
"bin/tuwunel"))
|
||||||
|
args)))
|
||||||
(add-after 'install 'fix-permission
|
(add-after 'install 'fix-permission
|
||||||
(lambda _
|
(lambda _
|
||||||
(chmod (string-append #$output "/bin/tuwunel") #o555)))
|
(chmod (string-append #$output "/bin/tuwunel") #o555)))
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user