mubeng: update GitHub repository owner (#430703)

Aleksana bf9fa86a 7b4da69c

Changed files
+11 -4
pkgs
by-name
mu
mubeng
+11 -4
pkgs/by-name/mu/mubeng/package.nix
···
lib,
buildGoModule,
fetchFromGitHub,
+
versionCheckHook,
}:
buildGoModule rec {
···
version = "0.22.0";
src = fetchFromGitHub {
-
owner = "kitabisa";
+
owner = "mubeng";
repo = "mubeng";
tag = "v${version}";
hash = "sha256-YK3a975l/gMCaWxTB4gEQWAzzX+GRnYSvKksPmp3ZRA=";
···
ldflags = [
"-s"
"-w"
-
"-X=ktbs.dev/mubeng/common.Version=${version}"
+
"-X=github.com/mubeng/mubeng/common.Version=${version}"
+
];
+
+
nativeInstallCheckInputs = [
+
versionCheckHook
];
+
doInstallCheck = true;
+
versionCheckProgramArg = "--version";
meta = {
description = "Proxy checker and IP rotator";
-
homepage = "https://github.com/kitabisa/mubeng";
-
changelog = "https://github.com/kitabisa/mubeng/releases/tag/v${version}";
+
homepage = "https://github.com/mubeng/mubeng";
+
changelog = "https://github.com/mubeng/mubeng/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "mubeng";