Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / avro-tools / default.nix
blob59ea3f5b15e657f37253408772f3acccadc3a7d2
1 { stdenv, fetchurl, makeWrapper, jre, lib }:
3 stdenv.mkDerivation rec {
4   pname = "avro-tools";
5   version = "1.11.1";
7   src = fetchurl {
8     url =
9     "mirror://maven/org/apache/avro/avro-tools/${version}/${pname}-${version}.jar";
10     sha256 = "sha256-uVTnWXbCS3JQkHWxopixhNue/ihzvukJ0CNDL5gm24g=";
11   };
13   dontUnpack = true;
15   buildInputs = [ jre ];
16   nativeBuildInputs = [ makeWrapper ];
17   sourceRoot = ".";
19   installPhase = ''
20     mkdir -p $out/bin
21     mkdir -p $out/libexec/avro-tools
22     cp $src $out/libexec/avro-tools/${pname}.jar
24     makeWrapper ${jre}/bin/java $out/bin/avro-tools \
25     --add-flags "-jar $out/libexec/avro-tools/${pname}.jar"
26   '';
28   meta = with lib; {
29     homepage    = "https://avro.apache.org/";
30     description = "Avro command-line tools and utilities";
31     sourceProvenance = with sourceTypes; [ binaryBytecode ];
32     license     = lib.licenses.asl20;
33     maintainers = with lib.maintainers; [ ];
34   };