darwin: Add new package opencflite.

This provides a port of Mac OS X's CoreFoundation and is needed if we
want to be able to run dsymutil using maloader.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-03-10 21:59:26 +01:00
parent c0d55fcc6a
commit 53a267e535
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, icu, libuuid, tzdata }:
stdenv.mkDerivation rec {
name = "opencflite-${version}";
version = "476.19.0";
src = fetchurl {
url = "mirror://sourceforge/opencflite/${name}.tar.gz";
sha256 = "0jgmzs0ycl930hmzcvx0ykryik56704yw62w394q1q3xw5kkjn9v";
};
configureFlags = [ "--with-uuid=${libuuid}" ];
buildInputs = [ icu tzdata.lib ];
enableParallelBuilding = true;
meta = {
description = "Cross platform port of the OS X CoreFoundation";
homepage = "http://sourceforge.net/projects/opencflite/";
license = stdenv.lib.licenses.apsl20;
};
}

View File

@ -6556,6 +6556,8 @@ let
cross = assert crossSystem != null; crossSystem;
});
opencflite = callPackage ../os-specific/darwin/opencflite {};
xcode = callPackage ../os-specific/darwin/xcode {};
};