depot/third_party/nixpkgs/pkgs/servers/sql/mysql/jdbc/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

34 lines
957 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 = [ ];
platforms = platforms.unix;
license = licenses.gpl2Only;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}