about summary refs log tree commit diff
path: root/pkgs/by-name/av/avro-tools/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/av/avro-tools/package.nix')
-rw-r--r--pkgs/by-name/av/avro-tools/package.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/by-name/av/avro-tools/package.nix b/pkgs/by-name/av/avro-tools/package.nix
new file mode 100644
index 0000000000000..730a05a259e8e
--- /dev/null
+++ b/pkgs/by-name/av/avro-tools/package.nix
@@ -0,0 +1,43 @@
+{
+  stdenv,
+  fetchurl,
+  makeWrapper,
+  jre,
+  lib,
+}:
+let
+  pname = "avro-tools";
+  version = "1.11.3";
+in
+stdenv.mkDerivation {
+  inherit pname version;
+
+  src = fetchurl {
+    url = "mirror://maven/org/apache/avro/avro-tools/${version}/${pname}-${version}.jar";
+    sha256 = "sha256-dPaV1rZxxE+G/gB7hEDyiMI7ZbzkTpNEtexp/Y6hrPI=";
+  };
+
+  dontUnpack = true;
+
+  buildInputs = [ jre ];
+  nativeBuildInputs = [ makeWrapper ];
+  sourceRoot = ".";
+
+  installPhase = ''
+    mkdir -p $out/bin
+    mkdir -p $out/libexec/avro-tools
+    cp $src $out/libexec/avro-tools/${pname}.jar
+
+    makeWrapper ${jre}/bin/java $out/bin/avro-tools \
+    --add-flags "-jar $out/libexec/avro-tools/${pname}.jar"
+  '';
+
+  meta = {
+    homepage = "https://avro.apache.org/";
+    description = "Avro command-line tools and utilities";
+    mainProgram = "avro-tools";
+    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
+    license = lib.licenses.asl20;
+    maintainers = with lib.maintainers; [ momeemt ];
+  };
+}