rosenthal: Add clash-meta-bin.

* rosenthal/packages/binaries.scm (clash-meta-bin): New variable.
pull/2/head
Hilton Chain 1 year ago
parent 9591b4adc9
commit 6673d31eee
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292
  1. 30
      rosenthal/packages/binaries.scm

@ -48,6 +48,36 @@ network and application layer, supporting various proxy and anti-censorship
protocols out-of-the-box.")
(license license:gpl3)))
(define-public clash-meta-bin
(package
(name "clash-meta-bin")
(version "1.16.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/MetaCubeX/Clash.Meta"
"/releases/download/v" version
"/clash.meta-linux-amd64-v" version ".gz"))
(sha256
(base32
"1kl4v87lqnc78zcvh0a9kyx3gfbj74nmpgcdd93kpaxa3rmrfnjb"))))
(build-system copy-build-system)
(arguments
(list #:install-plan
#~'((#$(string-append
"clash.meta-linux-amd64-v" (package-version this-package))
"bin/clash.meta"))
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'fix-permission
(lambda _
(chmod (string-append #$output "/bin/clash.meta") #o555))))))
(supported-systems '("x86_64-linux"))
(home-page "https://wiki.metacubex.one/")
(synopsis "Rule-based tunnel in Go")
(description
"This package provides @command{clash.meta}, another @code{clash} kernel.")
(license license:gpl3)))
(define-public cloudflare-warp-bin
(package
(name "cloudflare-warp-bin")

Loading…
Cancel
Save