mubeng: update GitHub repository owner

The upstream repository owner changed.

Upstream(0.21.0): https://github.com/mubeng/mubeng/commit/f70c064d7cb5b4890cabc1958cb11dba20c8af01

Also update the module path in ldflags, it causes wrong version number to display in nixpkgs

Upstream(0.15.0): https://github.com/mubeng/mubeng/commit/6681713175923b5e02080e10416429f26c79171d
nixpkgs(0.14.2 -> 0.15.3): 22021be9a5
This commit is contained in:
Kenichi Kamiya
2025-08-04 03:44:20 +09:00
parent c2b368251f
commit fcc79bd144
+4 -4
View File
@@ -9,7 +9,7 @@ buildGoModule rec {
version = "0.22.0";
src = fetchFromGitHub {
owner = "kitabisa";
owner = "mubeng";
repo = "mubeng";
tag = "v${version}";
hash = "sha256-YK3a975l/gMCaWxTB4gEQWAzzX+GRnYSvKksPmp3ZRA=";
@@ -20,13 +20,13 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X=ktbs.dev/mubeng/common.Version=${version}"
"-X=github.com/mubeng/mubeng/common.Version=${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";