Merge pull request #239693 from r-ryantm/auto-update/coreth

coreth: 0.12.2 -> 0.12.3

authored by figsoda and committed by GitHub 7f508897 bf0593cf

+3 -7
+3 -7
pkgs/applications/networking/coreth/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "coreth"; 9 - version = "0.12.2"; 9 + version = "0.12.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ava-labs"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-WkSZ+7ygg2dkotv3vwTrWaVsSQvgmPJ0xhPCqZdQit8="; 15 + hash = "sha256-4eaoTcbb7ddcSRWng3GsgK8JdFRMxxb0V7V1G7WV9tg="; 16 16 }; 17 17 18 18 # go mod vendor has a bug, see: golang/go#57529 19 19 proxyVendor = true; 20 20 21 - vendorHash = "sha256-nQfb94IileWTkSZOliDT6B6o7qQ8aQ0MdY0jzc84VIM="; 21 + vendorHash = "sha256-wOD/Iuks32TiBOFVsuaLzYe3vlOtz6MCI9abscZMxJc="; 22 22 23 23 ldflags = [ 24 24 "-s" ··· 41 41 changelog = "https://github.com/ava-labs/coreth/releases/tag/v${version}"; 42 42 license = licenses.lgpl3Only; 43 43 maintainers = with maintainers; [ urandom ]; 44 - # In file included from ../go/pkg/mod/github.com/zondax/hid@v0.9.1-0.20220302062450-5552068d2266/hid_enabled.go:38: 45 - # ./hidapi/mac/hid.c:693:34: error: use of undeclared identifier 'kIOMainPortDefault' 46 - # entry = IORegistryEntryFromPath(kIOMainPortDefault, path); 47 - broken = stdenv.isDarwin; 48 44 }; 49 45 }