Merge pull request #193969 from tjni/packr-aarch64-broken

packr: mark broken on darwin
This commit is contained in:
Jörg Thalheim 2022-10-02 17:04:14 +02:00 committed by GitHub
commit 782cdeffe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ buildGoModule
{ stdenv
, buildGoModule
, fetchFromGitHub
, lib
, symlinkJoin
}:
@ -27,6 +27,14 @@ let p2 = buildGoModule rec {
homepage = "https://github.com/gobuffalo/packr";
license = licenses.mit;
maintainers = with maintainers; [ mmahut ];
# golang.org/x/sys needs to be updated due to:
#
# https://github.com/golang/go/issues/49219
#
# but this package is no longer maintained.
#
broken = stdenv.isDarwin;
};
};
p1 = buildGoModule rec {
@ -51,6 +59,14 @@ p1 = buildGoModule rec {
homepage = "https://github.com/gobuffalo/packr";
license = licenses.mit;
maintainers = with maintainers; [ mmahut ];
# golang.org/x/sys needs to be updated due to:
#
# https://github.com/golang/go/issues/49219
#
# but this package is no longer maintained.
#
broken = stdenv.isDarwin;
};
};
in