From 75414df39ebb69865aa7d700be827d296e468d6d Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Thu, 30 Jul 2020 14:14:55 +0200 Subject: [PATCH] ft2-clone: fix some darwin dependencies Still failing, but it goes further than before --- pkgs/applications/audio/ft2-clone/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/audio/ft2-clone/default.nix b/pkgs/applications/audio/ft2-clone/default.nix index a7f85a8ae92..1e704ccbb39 100644 --- a/pkgs/applications/audio/ft2-clone/default.nix +++ b/pkgs/applications/audio/ft2-clone/default.nix @@ -4,6 +4,7 @@ , nixosTests , alsaLib , SDL2 +, libiconv }: stdenv.mkDerivation rec { @@ -18,7 +19,9 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake ]; - buildInputs = [ SDL2 ] ++ stdenv.lib.optional stdenv.isLinux alsaLib; + buildInputs = [ SDL2 ] + ++ stdenv.lib.optional stdenv.isLinux alsaLib + ++ stdenv.lib.optional stdenv.isDarwin libiconv; passthru.tests = { ft2-clone-starts = nixosTests.ft2-clone;