about summary refs log tree commit diff
path: root/pkgs/servers/http/tomcat/jdbc/mysql/default.nix
blob: 975d5234aee9b931d623b55fb58dc871884e86c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ stdenv, tomcat6, mysql_jdbc }:

stdenv.mkDerivation {
  name = "tomcat-mysql-jdbc";
  builder = ./builder.sh;
  buildInputs = [ mysql_jdbc ];
  
  inherit mysql_jdbc;
}