3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/brook/default.nix

24 lines
611 B
Nix
Raw Normal View History

2021-08-21 21:30:55 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
2019-04-10 16:56:21 +01:00
2021-08-21 21:30:55 +01:00
buildGoModule rec {
2019-04-10 16:56:21 +01:00
pname = "brook";
2021-08-21 21:30:55 +01:00
version = "20210701";
2019-04-10 16:56:21 +01:00
src = fetchFromGitHub {
owner = "txthinking";
2019-09-09 00:38:31 +01:00
repo = pname;
2019-04-10 16:56:21 +01:00
rev = "v${version}";
2021-08-21 21:30:55 +01:00
sha256 = "sha256-MYd9q1pjrdLbgIoIakHeBuCjlEjXib0CNivZiqk5hns=";
2019-04-10 16:56:21 +01:00
};
2021-08-21 21:30:55 +01:00
vendorSha256 = "sha256-iaaXLpzN69yHBcAi9GS+G7LupX/7VABo1XFNegk+i3Q=";
2019-04-10 16:56:21 +01:00
meta = with lib; {
homepage = "https://github.com/txthinking/brook";
2019-04-10 16:56:21 +01:00
description = "A cross-platform Proxy/VPN software";
2021-08-21 21:30:55 +01:00
license = with licenses; [ gpl3Only ];
2019-04-10 16:56:21 +01:00
platforms = platforms.linux;
maintainers = with maintainers; [ xrelkd ];
};
}