forked from mirrors/nixpkgs
Merge pull request #167244 from siraben/nlopt-darwin
This commit is contained in:
commit
6e4bac759c
|
@ -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 = [
|
||||
|
|
Loading…
Reference in a new issue