2024-07-21 19:18:09 +00:00
|
|
|
{
|
|
|
|
arrow-cpp,
|
|
|
|
glib,
|
|
|
|
gobject-introspection,
|
|
|
|
lib,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
pkg-config,
|
|
|
|
python3,
|
|
|
|
stdenv,
|
2022-07-07 02:41:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "arrow-glib";
|
|
|
|
inherit (arrow-cpp) src version;
|
2024-08-02 12:53:11 +00:00
|
|
|
sourceRoot = "${arrow-cpp.src.name}/c_glib";
|
2024-07-21 19:18:09 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
2022-07-07 02:41:19 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
2024-07-21 19:18:09 +00:00
|
|
|
python3
|
2022-07-07 02:41:19 +00:00
|
|
|
pkg-config
|
2023-06-22 11:49:31 +00:00
|
|
|
gobject-introspection
|
2022-07-07 02:41:19 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
arrow-cpp
|
|
|
|
glib
|
|
|
|
];
|
|
|
|
|
2024-07-21 19:18:09 +00:00
|
|
|
meta = {
|
2022-07-07 02:41:19 +00:00
|
|
|
inherit (arrow-cpp.meta) license platforms;
|
|
|
|
description = "GLib bindings for Apache Arrow";
|
|
|
|
homepage = "https://arrow.apache.org/docs/c_glib/";
|
2024-07-21 19:18:09 +00:00
|
|
|
maintainers = with lib.maintainers; [ amarshall ];
|
2022-07-07 02:41:19 +00:00
|
|
|
};
|
|
|
|
}
|