wgo: fixup

This commit is contained in:
Anderson Torres 2023-06-22 23:42:16 -03:00
parent cde966cfb1
commit cedd6f220e
2 changed files with 12 additions and 5 deletions

View File

@ -1,8 +1,14 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
let
pname = "wgo";
version = "0.5.1";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "bokwoon95";
@ -11,7 +17,7 @@ buildGoModule rec {
hash = "sha256-kfa3Lm2oJomhoHbtSPLylRr+BFGV/y7xqSIv3xHHg3Q=";
};
vendorSha256 = "sha256-jxyO3MGrC+y/jJuwur/+tLIsbxGnT57ZXYzaf1lCv7A=";
vendorHash = "sha256-jxyO3MGrC+y/jJuwur/+tLIsbxGnT57ZXYzaf1lCv7A=";
ldflags = [ "-s" "-w" ];
@ -21,7 +27,6 @@ buildGoModule rec {
description = "Live reload for Go apps";
homepage = "https://github.com/bokwoon95/wgo";
license = licenses.mit;
maintainers = with maintainers; [ bokwoon95 ];
maintainers = with maintainers; [ ];
};
}

View File

@ -3794,6 +3794,8 @@ with pkgs;
waydroid = callPackage ../os-specific/linux/waydroid { };
wgo = callPackage ../development/tools/wgo { };
wiiload = callPackage ../development/tools/wiiload { };
winhelpcgi = callPackage ../development/tools/winhelpcgi {