about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-21 04:43:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 04:43:00 -0500
commit1da05f29db72e6e1209777a3f28a5938c45c9e02 (patch)
treedf841608dc2f61cd1995586c8b9fe053525cbdb3 /pkgs/tools/admin
parenta35fcc100044d9bfc0754f218e35e94ec89fa558 (diff)
awsweeper: fix build on darwin
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/awsweeper/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/admin/awsweeper/default.nix b/pkgs/tools/admin/awsweeper/default.nix
index 661747c2fd0d6..1ea54953701d4 100644
--- a/pkgs/tools/admin/awsweeper/default.nix
+++ b/pkgs/tools/admin/awsweeper/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub, Security }:
 
 buildGoModule rec {
   pname = "awsweeper";
@@ -13,7 +13,9 @@ buildGoModule rec {
 
   modSha256 = "14yvf0svh7xqpc2y7xr94pc6r7d3iv2nsr8qs3f5q29hdc5hv3fs";
 
-  meta = with lib; {
+  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+
+  meta = with stdenv.lib; {
     description = "A tool to clean out your AWS account";
     homepage = "https://github.com/cloudetc/awsweeper/";
     license = licenses.mpl20;