2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
13 lines
231 B
Nix
13 lines
231 B
Nix
{ stdenv, tomcat6, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "tomcat-mysql-jdbc";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ mysql_jdbc ];
|
|
|
|
inherit mysql_jdbc;
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|