3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/mubeng/default.nix

26 lines
562 B
Nix
Raw Normal View History

2021-05-26 18:30:26 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "mubeng";
2021-08-15 12:14:22 +01:00
version = "0.5.2";
2021-05-26 18:30:26 +01:00
src = fetchFromGitHub {
owner = "kitabisa";
repo = pname;
rev = "v${version}";
2021-08-15 12:14:22 +01:00
sha256 = "sha256-jwBDa/TfXrD+f0q4nyQkpi52Jwl1XWZrMd3fPowNzgA=";
2021-05-26 18:30:26 +01:00
};
2021-08-15 12:14:22 +01:00
vendorSha256 = "sha256-/K1kBuxGEDUCBC7PiSpQRv1NEvTKwN+vNg2rz7pg838=";
2021-05-26 18:30:26 +01:00
meta = with lib; {
description = "Proxy checker and IP rotator";
homepage = "https://github.com/kitabisa/mubeng";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}