senv: mark broken on darwin

This commit is contained in:
Sandro Jäckel 2022-11-23 00:30:16 +01:00
parent 657a43860e
commit 3d97d9cc46
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "senv";
@ -20,5 +20,6 @@ buildGoModule rec {
homepage = "https://github.com/SpectralOps/senv";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
broken = stdenv.isDarwin; # needs golang.org/x/sys bump
};
}