mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
48 lines
884 B
Nix
48 lines
884 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mihomo";
|
|
version = "1.18.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MetaCubeX";
|
|
repo = "mihomo";
|
|
rev = "v${version}";
|
|
hash = "sha256-VbqIlaocee+IxL3DDXr17ZmvDsRqJEuST/1HcU0bJds=";
|
|
};
|
|
|
|
vendorHash = "sha256-6pbrBcDTE46YTWn0CTv9Nip7iUqS8xDbHGZ7VzqDnTc=";
|
|
|
|
excludedPackages = [ "./test" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/metacubex/mihomo/constant.Version=${version}"
|
|
];
|
|
|
|
tags = [
|
|
"with_gvisor"
|
|
];
|
|
|
|
# network required
|
|
doCheck = false;
|
|
|
|
|
|
passthru.tests = {
|
|
mihomo = nixosTests.mihomo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Rule-based tunnel in Go";
|
|
homepage = "https://github.com/MetaCubeX/mihomo/tree/Alpha";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ oluceps ];
|
|
mainProgram = "mihomo";
|
|
};
|
|
}
|