mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
wgo: fixup
This commit is contained in:
parent
cde966cfb1
commit
cedd6f220e
2 changed files with 12 additions and 5 deletions
|
@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue