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

30 lines
747 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2019-12-29 18:18:10 -08:00
buildGoModule rec {
pname = "clash";
2020-04-05 04:28:27 -07:00
version = "0.19.0";
2019-12-29 18:18:10 -08:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
2020-04-05 04:28:27 -07:00
sha256 = "08zwrnpiihlir83fryani8pr972lmj1sjvhjc5pzlw1hks88i9m2";
2019-12-29 18:18:10 -08:00
};
2020-01-02 02:56:51 -08:00
goPackagePath = "github.com/Dreamacro/clash";
2020-04-05 04:28:27 -07:00
modSha256 = "05i8mzhxzkgcmaa4gazfl8pq3n8mc4prww0ghl6m28cy7a0vsh7f";
2019-12-29 18:18:10 -08:00
2020-01-02 02:56:51 -08:00
buildFlagsArray = [
"-ldflags="
"-X ${goPackagePath}/constant.Version=${version}"
];
2019-12-29 18:18:10 -08:00
meta = with stdenv.lib; {
description = "A rule-based tunnel in Go";
homepage = "https://github.com/Dreamacro/clash";
license = licenses.gpl3;
2020-01-02 02:52:14 -08:00
maintainers = with maintainers; [ contrun filalex77 ];
2019-12-29 18:18:10 -08:00
platforms = platforms.all;
};
}