2020-03-27 08:33:21 +01:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2019-12-30 03:18:10 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "clash";
|
2020-10-18 00:40:17 +02:00
|
|
|
version = "1.2.0";
|
2019-12-30 03:18:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Dreamacro";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-10-18 00:40:17 +02:00
|
|
|
sha256 = "16dgpq67bcy9z5lqwykwh61kwxi164khxqc78i6a3dc9xyivwfya";
|
2019-12-30 03:18:10 +01:00
|
|
|
};
|
|
|
|
|
2020-10-18 00:40:17 +02:00
|
|
|
vendorSha256 = "0gmyq54h9zb4ry2p24nsp8ybqrmaq69zlyp220w16kamx790j07j";
|
2019-12-30 03:18:10 +01:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-01-02 11:56:51 +01:00
|
|
|
buildFlagsArray = [
|
|
|
|
"-ldflags="
|
2020-08-11 23:04:55 +02:00
|
|
|
"-X github.com/Dreamacro/clash/constant.Version=${version}"
|
2020-01-02 11:56:51 +01:00
|
|
|
];
|
|
|
|
|
2019-12-30 03:18:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A rule-based tunnel in Go";
|
|
|
|
homepage = "https://github.com/Dreamacro/clash";
|
|
|
|
license = licenses.gpl3;
|
2020-01-02 11:52:14 +01:00
|
|
|
maintainers = with maintainers; [ contrun filalex77 ];
|
2019-12-30 03:18:10 +01:00
|
|
|
};
|
2020-06-28 08:14:00 +02:00
|
|
|
}
|