packer,cdk-go,gotop: mark as broken on darwin due to using an outdated gopsutil

main
Dmitry Kalinkin 3 years ago
parent 0c6795fa5b
commit 775f5098c7
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
  1. 8
      pkgs/development/tools/packer/default.nix
  2. 2
      pkgs/tools/security/cdk-go/default.nix
  3. 1
      pkgs/tools/system/gotop/default.nix

@ -1,4 +1,9 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "packer";
@ -30,5 +35,6 @@ buildGoModule rec {
maintainers = with maintainers; [ cstrahan zimbatm ma27 ];
changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md";
platforms = platforms.unix;
broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
};
}

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
@ -25,5 +26,6 @@ buildGoModule rec {
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
mainProgram = "cdk";
broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
};
}

@ -28,5 +28,6 @@ buildGoModule rec {
changelog = "https://github.com/xxxserxxx/gotop/raw/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ maintainers.magnetophon ];
broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
};
}

Loading…
Cancel
Save