nixpkgs/pkgs/tools/text/xml/jing/jing-script.nix
2004-09-26 13:03:59 +00:00

12 lines
206 B
Nix

{stdenv, fetchurl, j2re, unzip} :
stdenv.mkDerivation {
name = "jing-tools";
builder = ./script-builder.sh;
jing = (import ./default.nix) {
inherit stdenv fetchurl unzip;
};
inherit j2re;
}