nixpkgs/pkgs/os-specific/darwin/opencflite/default.nix
aszlig 53a267e535
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>
2014-03-12 10:00:45 +01:00

22 lines
593 B
Nix

{ 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;
};
}