mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 16:15:30 +00:00
14 lines
276 B
Nix
14 lines
276 B
Nix
|
{stdenv, fetchurl, j2sdk} :
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "java-cup-10k";
|
||
|
builder = ./builder.sh;
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = http://www.cs.princeton.edu/~appel/modern/java/CUP/java_cup_v10k.tar.gz;
|
||
|
md5 = "8b11edfec13c590ea443d0f0ae0da479";
|
||
|
};
|
||
|
|
||
|
inherit j2sdk;
|
||
|
}
|