mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 20:50:30 +00:00
066db11215
This reverts commit4e6bf03504
, reversing changes made toafd997aab6
. Instead we propagate those frameworks from the compiler again
30 lines
747 B
Nix
30 lines
747 B
Nix
{ stdenv, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "clash";
|
|
version = "0.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Dreamacro";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "150zpjchldm1632z6gkydgqhx2a612lpwf5lqngd2if99nas54kk";
|
|
};
|
|
|
|
goPackagePath = "github.com/Dreamacro/clash";
|
|
modSha256 = "02bki2iq99lc9iq1mjf9rbxwspalrj7hjlk1h384w3d4s4x4fyxy";
|
|
|
|
buildFlagsArray = [
|
|
"-ldflags="
|
|
"-X ${goPackagePath}/constant.Version=${version}"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A rule-based tunnel in Go";
|
|
homepage = "https://github.com/Dreamacro/clash";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ contrun filalex77 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|