1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00
nixpkgs/pkgs/tools/networking/clash/default.nix

30 lines
747 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2019-12-30 02:18:10 +00:00
buildGoModule rec {
pname = "clash";
2020-03-14 19:05:40 +00:00
version = "0.18.0";
2019-12-30 02:18:10 +00:00
src = fetchFromGitHub {
owner = "Dreamacro";
repo = pname;
rev = "v${version}";
2020-03-14 19:05:40 +00:00
sha256 = "150zpjchldm1632z6gkydgqhx2a612lpwf5lqngd2if99nas54kk";
2019-12-30 02:18:10 +00:00
};
2020-01-02 10:56:51 +00:00
goPackagePath = "github.com/Dreamacro/clash";
2020-03-14 19:05:40 +00:00
modSha256 = "02bki2iq99lc9iq1mjf9rbxwspalrj7hjlk1h384w3d4s4x4fyxy";
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;
};
}