3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/clash/default.nix

29 lines
668 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-12-30 02:18:10 +00:00
buildGoModule rec {
pname = "clash";
2021-05-09 03:18:51 +01:00
version = "1.6.0";
2019-12-30 02:18:10 +00:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
2021-05-09 03:18:51 +01:00
sha256 = "sha256-XG/nci8Sj0vfa/SFPpJwl1Zmt/23LfKxocejplZtS0E=";
2019-12-30 02:18:10 +00:00
};
2021-05-09 03:18:51 +01:00
vendorSha256 = "sha256-WR1CpjEMHRkpd0/iqrOm0oVXvyQO+r6GyeP0L0zx8aA=";
2019-12-30 02:18:10 +00:00
doCheck = false;
2021-08-26 07:45:51 +01:00
ldflags = [
"-X github.com/Dreamacro/clash/constant.Version=${version}"
2020-01-02 10:56:51 +00:00
];
meta = with lib; {
2019-12-30 02:18:10 +00:00
description = "A rule-based tunnel in Go";
homepage = "https://github.com/Dreamacro/clash";
license = licenses.gpl3Only;
maintainers = with maintainers; [ contrun Br1ght0ne ];
2019-12-30 02:18:10 +00:00
};
}