mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
14 lines
188 B
Nix
14 lines
188 B
Nix
{ stdenv, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jboss-mysql-jdbc";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit mysql_jdbc;
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|