Merge pull request #98622 from avdv/auto-update/wtf

wtf: 0.31.0 -> 0.32.0
This commit is contained in:
Stig P 2020-10-07 15:34:28 +00:00 committed by GitHub
commit 2c0dc389b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -3,20 +3,21 @@
, lib , lib
, makeWrapper , makeWrapper
, ncurses , ncurses
, stdenv
}: }:
buildGoModule rec { buildGoModule rec {
pname = "wtf"; pname = "wtf";
version = "0.31.0"; version = "0.32.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wtfutil"; owner = "wtfutil";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "07ngk83p753w9qxm8bvw6n5vk0zldn14yv08d900sxny8cg2h0rb"; sha256 = "1055shnf716ga46wwcaffdpgc1glr8vrqrbs2sqbkr3wjan6n0nw";
}; };
vendorSha256 = "09iy148pnbdrzjj2j50lbd8s9mkv7vggrx77mj88p1gnqclz3lip"; vendorSha256 = "0l1q29mdb13ir7n1x65jfnrmy1lamlsa6hm2jagf6yjbm6wf1kw4";
doCheck = false; doCheck = false;
@ -37,5 +38,6 @@ buildGoModule rec {
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ kalbasit ]; maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
broken = stdenv.isDarwin;
}; };
} }