nixpkgs/pkgs/tools/networking/clash/default.nix

24 lines
591 B
Nix
Raw Normal View History

2019-12-30 02:18:10 +00:00
{ stdenv, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "clash";
2020-01-02 10:51:19 +00:00
version = "0.17.1";
2019-12-30 02:18:10 +00:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
2020-01-02 10:51:19 +00:00
sha256 = "0zhbaw9jzl9wqc7yx8yxqlb6fwkss4pqkv26069qg6nsk584ndnf";
2019-12-30 02:18:10 +00:00
};
2020-01-02 10:51:19 +00:00
modSha256 = "0vyd61bin7hmpdqrmrikc776mgif9v25627n8hzi65kiycv40kgx";
2019-12-30 02:18:10 +00:00
meta = with stdenv.lib; {
description = "A rule-based tunnel in Go";
homepage = "https://github.com/Dreamacro/clash";
license = licenses.gpl3;
maintainers = with maintainers; [ contrun ];
platforms = platforms.all;
};
}