mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
22 lines
597 B
Nix
22 lines
597 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.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;
|
|
};
|
|
}
|