Commit cedd6f22 authored by Anderson Torres's avatar Anderson Torres
Browse files

wgo: fixup

parent cde966cf
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
{ 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; [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 {