packr: mark broken on darwin

+18 -2
+18 -2
pkgs/development/libraries/packr/default.nix
··· 1 - { buildGoModule 1 + { stdenv 2 + , buildGoModule 2 3 , fetchFromGitHub 3 4 , lib 4 - 5 5 , symlinkJoin 6 6 }: 7 7 ··· 27 27 homepage = "https://github.com/gobuffalo/packr"; 28 28 license = licenses.mit; 29 29 maintainers = with maintainers; [ mmahut ]; 30 + 31 + # golang.org/x/sys needs to be updated due to: 32 + # 33 + # https://github.com/golang/go/issues/49219 34 + # 35 + # but this package is no longer maintained. 36 + # 37 + broken = stdenv.isDarwin; 30 38 }; 31 39 }; 32 40 p1 = buildGoModule rec { ··· 51 59 homepage = "https://github.com/gobuffalo/packr"; 52 60 license = licenses.mit; 53 61 maintainers = with maintainers; [ mmahut ]; 62 + 63 + # golang.org/x/sys needs to be updated due to: 64 + # 65 + # https://github.com/golang/go/issues/49219 66 + # 67 + # but this package is no longer maintained. 68 + # 69 + broken = stdenv.isDarwin; 54 70 }; 55 71 }; 56 72 in