1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/networking/clash/default.nix

30 lines
747 B
Nix
Raw Normal View History

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