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

30 lines
749 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2019-12-30 02:18:10 +00:00
buildGoModule rec {
pname = "clash";
version = "1.0.0";
2019-12-30 02:18:10 +00:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
sha256 = "0qyfv6h6m86m5bwayj0s1pjldnbagy63zc2ygzpnicihmd58khny";
2019-12-30 02:18:10 +00:00
};
2020-01-02 10:56:51 +00:00
goPackagePath = "github.com/Dreamacro/clash";
vendorSha256 = "0ap6wsx23s4q730s6d5cgc4ginh8zj5sd32k0za49fh50v8k8zbh";
2019-12-30 02:18:10 +00:00
2020-01-02 10:56:51 +00:00
buildFlagsArray = [
"-ldflags="
"-X ${goPackagePath}/constant.Version=${version}"
];
2019-12-30 02:18:10 +00:00
meta = with stdenv.lib; {
description = "A rule-based tunnel in Go";
homepage = "https://github.com/Dreamacro/clash";
license = licenses.gpl3;
2020-01-02 10:52:14 +00:00
maintainers = with maintainers; [ contrun filalex77 ];
2019-12-30 02:18:10 +00:00
platforms = platforms.all;
};
}