Unverified Commit fcc79bd1 authored by Kenichi Kamiya's avatar Kenichi Kamiya
Browse files

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): 22021be9
parent c2b36825
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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";