nixpkgs/pkgs/tools/networking/go-shadowsocks2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
636 B
Nix
Raw Normal View History

2021-01-13 09:12:29 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2019-08-26 16:06:09 +00:00
2021-01-13 09:12:29 +00:00
buildGoModule rec {
2019-08-26 16:06:09 +00:00
pname = "go-shadowsocks2";
version = "0.1.5";
2019-08-26 16:06:09 +00:00
src = fetchFromGitHub {
owner = "shadowsocks";
repo = "go-shadowsocks2";
rev = "v${version}";
sha256 = "sha256-z2+5q8XlxMN7x86IOMJ0qbrW4Wrm1gp8GWew51yBRFg=";
2019-08-26 16:06:09 +00:00
};
vendorHash = "sha256-RrHksWET5kicbdQ5HRDWhNxx4rTi2zaVeaPoLdg4uQw=";
2019-08-26 16:06:09 +00:00
meta = with lib; {
2019-08-26 16:06:09 +00:00
description = "Fresh implementation of Shadowsocks in Go";
homepage = "https://github.com/shadowsocks/go-shadowsocks2/";
license = licenses.asl20;
maintainers = with maintainers; [ oxzi ];
2024-02-11 02:19:15 +00:00
mainProgram = "go-shadowsocks2";
2019-08-26 16:06:09 +00:00
};
}