mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
972 B
Nix
37 lines
972 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 = with lib.maintainers; [ ];
|
|
};
|
|
}
|