09e3335664
svn path=/nixpkgs/trunk/; revision=1508
12 lines
No EOL
206 B
Nix
12 lines
No EOL
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;
|
|
} |