aws-vault: fix build on darwin
This commit is contained in:
parent
203e2ca6f9
commit
798569a534
@ -1,4 +1,4 @@
|
|||||||
{ buildGoModule, lib, fetchFromGitHub }:
|
{ buildGoModule, stdenv, fetchFromGitHub, Security }:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "aws-vault";
|
pname = "aws-vault";
|
||||||
version = "5.3.2";
|
version = "5.3.2";
|
||||||
@ -13,13 +13,15 @@ buildGoModule rec {
|
|||||||
modSha256 = "1d3hjfmfmlpw2scfyn597zkzz864w97p0wrsxjp49m9mi0pgmhq9";
|
modSha256 = "1d3hjfmfmlpw2scfyn597zkzz864w97p0wrsxjp49m9mi0pgmhq9";
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
# set the version. see: aws-vault's Makefile
|
# set the version. see: aws-vault's Makefile
|
||||||
buildFlagsArray = ''
|
buildFlagsArray = ''
|
||||||
-ldflags=
|
-ldflags=
|
||||||
-X main.Version=v${version}
|
-X main.Version=v${version}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with stdenv.lib; {
|
||||||
description =
|
description =
|
||||||
"A vault for securely storing and accessing AWS credentials in development environments";
|
"A vault for securely storing and accessing AWS credentials in development environments";
|
||||||
homepage = "https://github.com/99designs/aws-vault";
|
homepage = "https://github.com/99designs/aws-vault";
|
||||||
|
@ -753,7 +753,9 @@ in
|
|||||||
|
|
||||||
aws-sam-cli = callPackage ../development/tools/aws-sam-cli { python = python3; };
|
aws-sam-cli = callPackage ../development/tools/aws-sam-cli { python = python3; };
|
||||||
|
|
||||||
aws-vault = callPackage ../tools/admin/aws-vault { };
|
aws-vault = callPackage ../tools/admin/aws-vault {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
iamy = callPackage ../tools/admin/iamy { };
|
iamy = callPackage ../tools/admin/iamy { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user