mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
14 lines
255 B
Nix
14 lines
255 B
Nix
{stdenv, fetchurl, jdk} :
|
|
|
|
stdenv.mkDerivation {
|
|
name = "java-cup-10k";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/java_cup_v10k.tar.gz;
|
|
md5 = "8b11edfec13c590ea443d0f0ae0da479";
|
|
};
|
|
|
|
inherit jdk;
|
|
}
|