mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
28ab0dd501
svn path=/nixpkgs/trunk/; revision=10374
10 lines
135 B
Nix
10 lines
135 B
Nix
{ stdenv, jboss, mysql_jdbc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jboss-mysql-jdbc";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit mysql_jdbc;
|
|
}
|