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

30 lines
692 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-12-30 02:18:10 +00:00
buildGoModule rec {
pname = "clash";
2021-04-10 06:53:52 +00:00
version = "1.5.0";
2019-12-30 02:18:10 +00:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
2021-04-10 06:53:52 +00:00
sha256 = "sha256-I4qpcHsN8WGt7YLNXO08BJypilhMSVmZjqECDjlEqXU=";
2019-12-30 02:18:10 +00:00
};
2021-04-10 06:53:52 +00:00
vendorSha256 = "sha256-Nfzk7p52msGxTPDbs4g9KuRPFxp4Npt0QXkdVOZvipc=";
2019-12-30 02:18:10 +00:00
doCheck = false;
2020-01-02 10:56:51 +00:00
buildFlagsArray = [
"-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
};
}