mysql_jdbc: add passthru.updateScript
This commit is contained in:
parent
1a7b36dd1b
commit
7e08fc9049
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, ant, unzip }:
|
||||
{ lib, stdenv, fetchurl, ant, unzip, gitUpdater }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mysql-connector-java";
|
||||
|
@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
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/";
|
||||
|
|
Loading…
Reference in a new issue