mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-02 17:09:09 +03:00
Merge pull request #230615 from fbewivpjsbsby/fix-phantomsocks
This commit is contained in:
commit
89d1baa08b
@ -1,6 +1,11 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, libpcap
|
||||
# Cann't be build with both pcap and rawsocket tags
|
||||
, withPcap ? (!stdenv.isLinux && !withRawsocket)
|
||||
, withRawsocket ? (stdenv.isLinux && !withPcap)
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@ -16,6 +21,13 @@ buildGoModule rec {
|
||||
|
||||
vendorHash = "sha256-c0NQfZuMMWz1ASwFBcpMNjxZwXLo++gMYBiNgvT8ZLQ=";
|
||||
|
||||
ldflags = [
|
||||
"-s" "-w"
|
||||
];
|
||||
buildInputs = lib.optional withPcap libpcap;
|
||||
tags = lib.optional withPcap "pcap"
|
||||
++ lib.optional withRawsocket "rawsocket";
|
||||
|
||||
meta = with lib;{
|
||||
homepage = "https://github.com/macronut/phantomsocks";
|
||||
description = "A cross-platform proxy client/server for Linux/Windows/macOS";
|
||||
|
Loading…
Reference in New Issue
Block a user