mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
15 lines
219 B
Nix
15 lines
219 B
Nix
{ lib, stdenv, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "jboss-mysql-jdbc";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit mysql_jdbc;
|
|
version = mysql_jdbc.version;
|
|
|
|
meta = {
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|