2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, buildGoModule }:
|
2019-12-29 18:18:10 -08:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "clash";
|
2021-01-18 05:07:06 -08:00
|
|
|
version = "1.3.5";
|
2019-12-29 18:18:10 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Dreamacro";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-01-18 05:07:06 -08:00
|
|
|
sha256 = "sha256-yTkUGsVwK6nwHUQpYhkPYF/Cf4URrr5ThB67sxq7Ecs=";
|
2019-12-29 18:18:10 -08:00
|
|
|
};
|
|
|
|
|
2021-01-18 05:07:06 -08:00
|
|
|
vendorSha256 = "sha256-J7VGYxX1bH5CeDhpqK9mIbHUekXslImZ+O3wN5Q7kYk=";
|
2019-12-29 18:18:10 -08:00
|
|
|
|
2020-08-03 17:26:27 -07:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-01-02 02:56:51 -08:00
|
|
|
buildFlagsArray = [
|
|
|
|
"-ldflags="
|
2020-08-11 14:04:55 -07:00
|
|
|
"-X github.com/Dreamacro/clash/constant.Version=${version}"
|
2020-01-02 02:56:51 -08:00
|
|
|
];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-12-29 18:18:10 -08:00
|
|
|
description = "A rule-based tunnel in Go";
|
|
|
|
homepage = "https://github.com/Dreamacro/clash";
|
|
|
|
license = licenses.gpl3;
|
2020-11-17 03:02:06 -08:00
|
|
|
maintainers = with maintainers; [ contrun Br1ght0ne ];
|
2019-12-29 18:18:10 -08:00
|
|
|
};
|
2020-06-27 23:14:00 -07:00
|
|
|
}
|