mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
35 lines
971 B
Nix
35 lines
971 B
Nix
{ lib, stdenv, fetchurl, ant, unzip, gitUpdater }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mysql-connector-java";
|
|
version = "8.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${version}.zip";
|
|
hash = "sha256-N0emBuTaYlyL1SS0wDOR8uiz4yGUOMllKR7LC60eFEg=";
|
|
};
|
|
|
|
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.gpl2;
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|