mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 20:39:56 +00:00

Start adding java ETL examples, starting with kafka etl. We've had a few requests to start providing Java examples rather than Python due to type safety. I've also started to add these to metadata-ingestion-examples to make it clearer these are *examples*. They can be used directly or as a basis for other things. As we port to Java we'll move examples to contrib.
17 lines
349 B
Nix
17 lines
349 B
Nix
with import <nixpkgs> {} ;
|
|
let
|
|
in
|
|
mkShell {
|
|
buildInputs = [
|
|
(haskellPackages.ghcWithPackages ( p:
|
|
[ p.bytestring p.string-conversions
|
|
p.exceptions
|
|
p.network-uri p.directory
|
|
p.lens p.aeson p.lens-aeson p.avro p.hw-kafka-avro
|
|
p.hw-kafka-client
|
|
p.conduit p.hw-kafka-conduit
|
|
]
|
|
))
|
|
];
|
|
}
|