darwin purity: libuv, again

This commit is contained in:
Jude Taylor
2015-06-21 00:56:48 -07:00
parent 6f3729e3b3
commit 26da697f73
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -1,4 +1,6 @@
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, CoreServices }:
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
, ApplicationServices, CoreServices }:
let
stable = "stable";
@@ -60,7 +62,7 @@ let
name = mkName stability version;
src = mkSrc version sha256;
buildInputs = [ automake autoconf libtool pkgconfig ]
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
preConfigure = ''
LIBTOOLIZE=libtoolize ./autogen.sh
'';