mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
Merge pull request #75572 from shahrukh330/shahrukh330/aws-okta-fix-darwin-build
aws-okta: fix build on darwin
This commit is contained in:
commit
9fb0c2ea82
|
@ -1,4 +1,4 @@
|
|||
{ buildGoPackage, fetchFromGitHub, libusb1, pkgconfig, stdenv }:
|
||||
{ buildGoPackage, fetchFromGitHub, libusb1, pkgconfig, stdenv, libiconv }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "aws-okta";
|
||||
|
@ -18,14 +18,13 @@ buildGoPackage rec {
|
|||
buildFlags = "--tags release";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libusb1 ];
|
||||
buildInputs = [ libusb1 libiconv ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
description = "aws-vault like tool for Okta authentication";
|
||||
license = licenses.mit;
|
||||
maintainers = [maintainers.imalsogreg];
|
||||
broken = stdenv.isDarwin; # test with CoreFoundation 10.11
|
||||
platforms = platforms.all;
|
||||
homepage = https://github.com/segmentio/aws-okta;
|
||||
downloadPage = "https://github.com/segmentio/aws-okta";
|
||||
|
|
Loading…
Reference in a new issue