mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
ea9c748aa4
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/81178700485a613e552bedbac7095177
18 lines
385 B
Nix
18 lines
385 B
Nix
{stdenv, fetchurl, ant, unzip}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mysql-connector-java-5.1.46";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = "http://dev.mysql.com/get/Downloads/Connector-J/${name}.zip";
|
|
sha256 = "0dfjshrrx0ndfb6xbdpwhn1f1jkw0km57rgpar0ny8ixmgdnlwnm";
|
|
};
|
|
|
|
buildInputs = [ unzip ant ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|