summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/opencflite/default.nix
blob: 26af46a171fdb2f95e2e7039ffb6e9b0b8679318 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
  };

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