packr: mark broken on darwin

+18 -2
+18 -2
pkgs/development/libraries/packr/default.nix
··· 1 - { buildGoModule 2 , fetchFromGitHub 3 , lib 4 - 5 , symlinkJoin 6 }: 7 ··· 27 homepage = "https://github.com/gobuffalo/packr"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ mmahut ]; 30 }; 31 }; 32 p1 = buildGoModule rec { ··· 51 homepage = "https://github.com/gobuffalo/packr"; 52 license = licenses.mit; 53 maintainers = with maintainers; [ mmahut ]; 54 }; 55 }; 56 in
··· 1 + { stdenv 2 + , buildGoModule 3 , fetchFromGitHub 4 , lib 5 , symlinkJoin 6 }: 7 ··· 27 homepage = "https://github.com/gobuffalo/packr"; 28 license = licenses.mit; 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; 38 }; 39 }; 40 p1 = buildGoModule rec { ··· 59 homepage = "https://github.com/gobuffalo/packr"; 60 license = licenses.mit; 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; 70 }; 71 }; 72 in