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

30 lines
747 B
Nix
Raw Normal View History

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