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

30 lines
692 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-12-30 03:18:10 +01:00
buildGoModule rec {
pname = "clash";
2021-05-09 04:18:51 +02:00
version = "1.6.0";
2019-12-30 03:18:10 +01:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
2021-05-09 04:18:51 +02:00
sha256 = "sha256-XG/nci8Sj0vfa/SFPpJwl1Zmt/23LfKxocejplZtS0E=";
2019-12-30 03:18:10 +01:00
};
2021-05-09 04:18:51 +02:00
vendorSha256 = "sha256-WR1CpjEMHRkpd0/iqrOm0oVXvyQO+r6GyeP0L0zx8aA=";
2019-12-30 03:18:10 +01:00
doCheck = false;
2020-01-02 11:56:51 +01:00
buildFlagsArray = [
"-ldflags="
"-X github.com/Dreamacro/clash/constant.Version=${version}"
2020-01-02 11:56:51 +01:00
];
meta = with lib; {
2019-12-30 03:18:10 +01: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 03:18:10 +01:00
};
}