nlopt: fix darwin build

This commit is contained in:
Ben Siraphob 2022-04-04 17:13:42 -05:00
parent 366a59cdc3
commit a3a55b732e
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, octave ? null }:
{ lib, stdenv, fetchFromGitHub, cmake, octave ? null, libiconv }:
stdenv.mkDerivation rec {
pname = "nlopt";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-TgieCX7yUdTAEblzXY/gCN0r6F9TVDh4RdNDjQdXZ1o=";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
buildInputs = [ octave ];
configureFlags = [