blob: d1441f25ad415a1e0fedce756aa4eb45476b5d9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
(define-module (ryan-packages networking)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system copy)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (gnu packages networking)
#:use-module (ryan-packages linux)
#:use-module (guix utils))
(define-public blueman-ryan
(package
(inherit blueman)
(inputs (modify-inputs (package-inputs blueman) (delete "bluez") (prepend bluez-ryan)))))
(define-public netbird-bin
(package
(name "netbird")
(version "0.61.0")
(source (origin
(method url-fetch/tarbomb)
(uri (string-append "https://github.com/netbirdio/netbird/releases/download/v" version "/netbird_" version "_linux_amd64.tar.gz"))
(sha256
(base32
"17l7qnpk5hg6kyb2f48xq5l188p6rjx923a4hbqacz996sk3b97a"))))
(build-system copy-build-system)
(arguments
(list #:install-plan
#~'(("." "bin/" #:include("netbird")))))
(supported-systems '("x86_64-linux"))
(home-page "https://netbird.io")
(synopsis "Private Wireguard-based networks")
(description "This package provides @command{netbird}, which is an alternative to Tailscale.")
(license license:bsd-3)))
netbird-bin
|