packr: mark broken on darwin

main
Theodore Ni 2 years ago
parent a2cf0add92
commit 16e3fbb782
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474
  1. 20
      pkgs/development/libraries/packr/default.nix

@ -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

Loading…
Cancel
Save