nixpkgs/pkgs/development/tools/avro-tools/default.nix
Alyssa Ross 02dfbde639
treewide: use mirror URLs where available
Candidates identified with

	git grep -F "$(grep -v '#' pkgs/build-support/fetchurl/mirrors.nix |
		grep -v nixos.org | grep :// | cut -d '"' -f 2)"

and then manually reviewed and tested.
2021-11-06 01:56:39 +00:00

35 lines
879 B
Nix

{ stdenv, fetchurl, makeWrapper, jre, lib }:
stdenv.mkDerivation rec {
pname = "avro-tools";
version = "1.9.2";
src = fetchurl {
url =
"mirror://maven/org/apache/avro/avro-tools/${version}/${pname}-${version}.jar";
sha256 = "169cv4fjsj69fa2s87gh1i7wk0xzh3l7sx5yyz3cgyjalg4a12n1";
};
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 = with lib; {
homepage = "https://avro.apache.org/";
description = "Avro command-line tools and utilities";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
};
}