14 lines
218 B
Nix
14 lines
218 B
Nix
{ lib, stdenv, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "tomcat-mysql-jdbc";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ mysql_jdbc ];
|
|
|
|
inherit mysql_jdbc;
|
|
|
|
meta = {
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|