about summary refs log tree commit diff
path: root/pkgs/development/tools/packer
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2021-12-23 00:07:22 -0500
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2021-12-23 00:08:39 -0500
commit775f5098c7b17806aad449d30307c273d67fe127 (patch)
tree79287560657eec49b72b37af183ba849775af202 /pkgs/development/tools/packer
parent0c6795fa5b34e8f6326c203578722837db3933dd (diff)
packer,cdk-go,gotop: mark as broken on darwin due to using an outdated gopsutil
Diffstat (limited to 'pkgs/development/tools/packer')
-rw-r--r--pkgs/development/tools/packer/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index aea34c5d57c15..6c7fdda336bc6 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/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
   };
 }