depot/third_party/nixpkgs/pkgs/servers/sql/mysql/jdbc/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

34 lines
975 B
Nix

{ lib, stdenv, fetchurl, ant, unzip, gitUpdater }:
stdenv.mkDerivation rec {
pname = "mysql-connector-java";
version = "9.0.0";
src = fetchurl {
url = "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${version}.zip";
hash = "sha256-3Czzu7hheuF0FYF8+GtjkxXSXfxTaqHrPa/+69I8Wfg=";
};
installPhase = ''
mkdir -p $out/share/java
cp mysql-connector-j-*.jar $out/share/java/mysql-connector-j.jar
'';
nativeBuildInputs = [ unzip ];
buildInputs = [ ant ];
passthru.updateScript = gitUpdater {
url = "https://github.com/mysql/mysql-connector-j.git";
};
meta = with lib; {
description = "MySQL Connector/J";
homepage = "https://dev.mysql.com/doc/connector-j/en/";
changelog = "https://dev.mysql.com/doc/relnotes/connector-j/en/";
maintainers = with maintainers; [ ];
platforms = platforms.unix;
license = licenses.gpl2Only;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}