mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
15 lines
251 B
Nix
15 lines
251 B
Nix
{ lib, stdenv, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "tomcat-mysql-jdbc";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ mysql_jdbc ];
|
|
|
|
inherit mysql_jdbc;
|
|
version = mysql_jdbc.version;
|
|
|
|
meta = {
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|