L-Nafaryus
a4d8f5232e
Some checks failed
nix / check (push) Failing after 1m15s
flake: fix name conventions flake: configurations -> lib.preconfiguredModules flake.packages: rework platform dependency with convient module and evaluator `lib.collectPackages` packages.bonfire-docs: convient evaluators `nixosModulesDoc` and `packagesDoc` new: packages.postgresql: container image new: packages.redis: container image remove: packages.lego: needed dns provider was added to lego and nixpkgs packages.netgen: broken
36 lines
783 B
Nix
36 lines
783 B
Nix
{
|
|
bonLib,
|
|
lib,
|
|
pkgs,
|
|
version ? "0.8",
|
|
hash ? "sha256-kPCdOZl4m7KBb970TjJokXorKfnCvuV5Uq7lFQIh1z8=",
|
|
vendorHash ? "sha256-ib9xRklkLfrDCuLf7zDkJE8lJiNiUMPZ01MDxvqho6o=",
|
|
...
|
|
}:
|
|
pkgs.buildGoModule {
|
|
pname = "spoofdpi";
|
|
inherit version;
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "xvzc";
|
|
repo = "SpoofDPI";
|
|
rev = version;
|
|
hash = hash;
|
|
};
|
|
|
|
inherit vendorHash;
|
|
|
|
doCheck = false;
|
|
|
|
ldflags = ["-s" "-w" "-X main.version=${version}" "-X main.builtBy=nixpkgs"];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xvzc/SpoofDPI";
|
|
description = "A simple and fast anti-censorship tool written in Go";
|
|
license = licenses.asl20;
|
|
maintainers = with bonLib.maintainers; [L-Nafaryus];
|
|
broken = false;
|
|
mainProgram = "spoof-dpi";
|
|
};
|
|
}
|