mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-09-18 12:44:37 +00:00
rosenthal: Add rclone-bin.
* modules/rosenthal/packages/binaries.scm (rclone-bin): New variable.
This commit is contained in:
parent
921ea4f87c
commit
42d15decd1
@ -20,6 +20,7 @@
|
|||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages java)
|
#:use-module (gnu packages java)
|
||||||
#:use-module (gnu packages nss)
|
#:use-module (gnu packages nss)
|
||||||
|
#:use-module (gnu packages sync)
|
||||||
#:use-module (rosenthal packages networking)
|
#:use-module (rosenthal packages networking)
|
||||||
#:use-module (rosenthal packages rust-apps)
|
#:use-module (rosenthal packages rust-apps)
|
||||||
#:use-module (rosenthal packages web))
|
#:use-module (rosenthal packages web))
|
||||||
@ -183,6 +184,29 @@ with the Subsonic API.")
|
|||||||
(properties '((upstream-name . "navidrome")
|
(properties '((upstream-name . "navidrome")
|
||||||
(disable-updater? . #t)))))
|
(disable-updater? . #t)))))
|
||||||
|
|
||||||
|
(define-public rclone-bin
|
||||||
|
(package
|
||||||
|
(inherit rclone)
|
||||||
|
(name "rclone-bin")
|
||||||
|
(version "1.71.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch/zipbomb)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/rclone/rclone/releases/download/v"
|
||||||
|
version "/rclone-v" version "-linux-amd64.zip"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14wyd767nbk3whgfvblb3kpiyzskcqbq61nh1jq6wbpg6pawznrx"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:install-plan
|
||||||
|
#~'((#$(string-append "rclone-v" (package-version this-package)
|
||||||
|
"-linux-amd64/rclone")
|
||||||
|
"bin/rclone"))))
|
||||||
|
(supported-systems '("x86_64-linux"))
|
||||||
|
(properties '((upstream-name . "rclone")
|
||||||
|
(disable-updater? . #t)))))
|
||||||
|
|
||||||
(define-public shadow-tls-bin
|
(define-public shadow-tls-bin
|
||||||
(package
|
(package
|
||||||
(name "shadow-tls-bin")
|
(name "shadow-tls-bin")
|
||||||
|
Loading…
Reference in New Issue
Block a user