2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
14 lines
195 B
Nix
14 lines
195 B
Nix
{ stdenv, jboss, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jboss-mysql-jdbc";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit mysql_jdbc;
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|