nixpkgs/pkgs/by-name/ar/arrow-glib/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
646 B
Nix
Raw Normal View History

{
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";
strictDeps = true;
2022-07-07 02:41:19 +00:00
nativeBuildInputs = [
meson
ninja
python3
2022-07-07 02:41:19 +00:00
pkg-config
gobject-introspection
2022-07-07 02:41:19 +00:00
];
buildInputs = [
arrow-cpp
glib
];
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/";
maintainers = with lib.maintainers; [ amarshall ];
2022-07-07 02:41:19 +00:00
};
}