mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
37 lines
950 B
Nix
37 lines
950 B
Nix
{ stdenv, fetchurl, makeWrapper, jre, lib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "avro-tools";
|
|
version = "1.11.3";
|
|
|
|
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 = with lib; {
|
|
homepage = "https://avro.apache.org/";
|
|
description = "Avro command-line tools and utilities";
|
|
mainProgram = "avro-tools";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|