mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, enableGUI ? false # upstream working in progress
|
|
, pkg-config
|
|
, glfw
|
|
, xorg
|
|
, libXcursor
|
|
, libXrandr
|
|
, libXinerama
|
|
, xinput
|
|
, libXi
|
|
, libXxf86vm
|
|
}:
|
|
buildGoModule rec{
|
|
pname = "bepass";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bepass-org";
|
|
repo = "bepass";
|
|
rev = "v${version}";
|
|
hash = "sha256-ruOhPWNs1WWM3r6X+6ch0HoDCu/a+IkBQiCr0Wh6yS8=";
|
|
};
|
|
|
|
vendorHash = "sha256-Juie/Hq3i6rvAK19x6ah3SCQJL0uCrmV9gvzHih3crY=";
|
|
|
|
subPackages = [
|
|
"cmd/cli"
|
|
];
|
|
proxyVendor = true;
|
|
nativeBuildInputs = lib.optionals enableGUI [ pkg-config ];
|
|
buildInputs = lib.optionals enableGUI [
|
|
glfw
|
|
xorg.libXft
|
|
libXcursor
|
|
libXrandr
|
|
libXinerama
|
|
libXi
|
|
xinput
|
|
libXxf86vm
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cli $out/bin/bepass
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bepass-org/bepass";
|
|
description = "Simple DPI bypass tool written in go";
|
|
license = licenses.mit;
|
|
mainProgram = "bepass";
|
|
maintainers = with maintainers; [ oluceps ];
|
|
broken = enableGUI;
|
|
};
|
|
}
|