brook: init at 20190401 (#59201)

This commit is contained in:
xrelkd
2019-04-10 17:56:21 +02:00
committed by xeji
parent d165ed8b24
commit fc1603583b
4 changed files with 206 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "brook";
version = "20190401";
goPackagePath = "github.com/txthinking/brook";
src = fetchFromGitHub {
owner = "txthinking";
repo = "${pname}";
rev = "v${version}";
sha256 = "0kx0dpvr3llpdzmw5bvzhdvwkmzrv6kqbsilx6rgrvyl61y9pyry";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
homepage = https://github.com/txthinking/brook;
description = "A cross-platform Proxy/VPN software";
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ xrelkd ];
};
}