anvil-editor: mark broken

Signed-off-by: Paul Meyer <katexochen0@gmail.com>

+7 -3
+7 -3
pkgs/by-name/an/anvil-editor/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - buildGo123Module, 4 + buildGoModule, 5 5 fetchzip, 6 6 pkg-config, 7 7 copyDesktopItems, ··· 15 15 buildPackages, 16 16 }: 17 17 18 - buildGo123Module (finalAttrs: { 18 + buildGoModule (finalAttrs: { 19 19 pname = "anvil-editor"; 20 20 version = "0.6"; 21 21 ··· 30 30 31 31 vendorHash = "sha256-1oFBV7D7JgOt5yYAxVvC4vL4ccFv3JrNngZbo+5pzrk="; 32 32 33 - anvilExtras = buildGo123Module { 33 + anvilExtras = buildGoModule { 34 34 pname = "anvil-editor-extras"; 35 35 inherit (finalAttrs) version src meta; 36 36 vendorHash = "sha256-4pfk5XuwDbCWFZIF+1l+dy8NfnGNjgHmSg9y6/RnTSo="; ··· 93 93 mainProgram = "anvil"; 94 94 maintainers = with lib.maintainers; [ aleksana ]; 95 95 platforms = with lib.platforms; unix ++ windows; 96 + # Doesn't build with >buildGo123Module. 97 + # Multiple errors like the following: 98 + # '> vendor/gioui.org/internal/vk/vulkan.go:1916:9: cannot define new methods on non-local type SurfaceCapabilities' 99 + broken = true; 96 100 }; 97 101 })