forked from JonathanxD/openaws-vpn-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opensaws-vpn-client.nix
51 lines (45 loc) · 1.25 KB
/
opensaws-vpn-client.nix
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
with import <nixpkgs> {
overlays = [
(import (fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"))
];
};
(makeRustPlatform {
rustc = rust-bin.nightly."2021-12-04".default;
cargo = rust-bin.nightly."2021-12-04".default;
}).buildRustPackage rec {
pname = "openaws-vpn-client";
version = "0.1.4";
buildInputs = [
pkgconfig
glib.dev
gtk3.dev
];
nativeBuildInputs = [
pkg-config
];
src = fetchFromGitHub {
owner = "JonathanxD";
repo = pname;
rev = "${version}";
sha256 = "wByqNbgTFtoZpaGjwq66PKxGOQU9j22UcKgkxclQ1Ew=";
};
cargoSha256 = "nzBHdS4TK0oYM+GbliTvgIosQ6FL/36qyFUDS//oteE=";
meta = with lib; {
description = "Unofficial open-source AWS VPN client written in Rust";
homepage = "https://github.com/JonathanxD/opensaws-vpn-client";
license = licenses.mit;
maintainers = with maintainers; [
{
name = "Jonathan H. R. Lopes";
github = "JonathanxD";
githubId = 5360060;
matrix = "@jonathanhrl:matrix.org";
email = "[email protected]";
keys = [{
longkeyid = "rsa3072/0x4DF5FC43FD4FE9CC";
fingerprint = "B2C2 7303 C091 E72F C62A AB69 4DF5 FC43 FD4F E9CC";
}];
}
];
};
}