2020-03-27 07:33:21 +00:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2019-12-30 02:18:10 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "clash";
|
2020-05-07 15:29:19 +01:00
|
|
|
version = "0.20.0";
|
2019-12-30 02:18:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Dreamacro";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-05-07 15:29:19 +01:00
|
|
|
sha256 = "1nb4hl9x2lj0hy8byz14c2xn6yhrb6pqmhzl002k83qd3zrc6s3p";
|
2019-12-30 02:18:10 +00:00
|
|
|
};
|
|
|
|
|
2020-01-02 10:56:51 +00:00
|
|
|
goPackagePath = "github.com/Dreamacro/clash";
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "0nh3cn31p7yhnhjzqp84dnhzy3hag253bjp70w8q03lw7mkhdgz3";
|
2019-12-30 02:18:10 +00:00
|
|
|
|
2020-01-02 10:56:51 +00:00
|
|
|
buildFlagsArray = [
|
|
|
|
"-ldflags="
|
|
|
|
"-X ${goPackagePath}/constant.Version=${version}"
|
|
|
|
];
|
|
|
|
|
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;
|
2020-01-02 10:52:14 +00:00
|
|
|
maintainers = with maintainers; [ contrun filalex77 ];
|
2019-12-30 02:18:10 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2020-05-01 02:59:00 +01:00
|
|
|
}
|