nixpkgs/pkgs/os-specific/darwin/opencflite/default.nix

22 lines
599 B
Nix
Raw Normal View History

{ stdenv, fetchurl, icu, libuuid, tzdata }:
stdenv.mkDerivation rec {
pname = "opencflite";
version = "476.19.0";
src = fetchurl {
url = "mirror://sourceforge/opencflite/${pname}-${version}.tar.gz";
sha256 = "0jgmzs0ycl930hmzcvx0ykryik56704yw62w394q1q3xw5kkjn9v";
};
2018-04-02 11:54:58 +00:00
configureFlags = [ "--with-uuid=${libuuid.dev}" ];
buildInputs = [ icu tzdata.dev ];
enableParallelBuilding = true;
meta = {
description = "Cross platform port of the macOS CoreFoundation";
homepage = https://sourceforge.net/projects/opencflite/;
license = stdenv.lib.licenses.apsl20;
};
}