mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, openssl
|
|
, perl
|
|
, rdkafka
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kafka-delta-ingest";
|
|
version = "unstable-2021-12-08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "delta-io";
|
|
repo = pname;
|
|
rev = "c48c854145b5aab1b8f36cc04978880794a2273c";
|
|
sha256 = "sha256-q0jOVZlxMHIhnc8y2N8o7Sl5Eg7DfJ96kXrPIV8RD1Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
perl
|
|
];
|
|
|
|
buildFeatures = [ "dynamic-linking" ];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
rdkafka
|
|
];
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"deltalake-0.4.1" = "sha256-0v3n+qMbBhw53qPuZdhGSO+aqc6j8T577fnyEIQmPDU=";
|
|
};
|
|
};
|
|
|
|
# many tests seem to require a running kafka instance
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "A highly efficient daemon for streaming data from Kafka into Delta Lake";
|
|
mainProgram = "kafka-delta-ingest";
|
|
homepage = "https://github.com/delta-io/kafka-delta-ingest";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|