1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Updated ANTLR version 2 from 2.7.6 to 2.7.7.

svn path=/nixpkgs/trunk/; revision=14576
This commit is contained in:
Peter Simons 2009-03-17 15:42:54 +00:00
parent 2345d0c8aa
commit 22e1286711
3 changed files with 11 additions and 11 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, jdk, python}:
stdenv.mkDerivation {
name = "antlr-2.7.7";
src = fetchurl {
url = "http://www.antlr2.org/download/antlr-2.7.7.tar.gz";
sha256 = "1ffvcwdw73id0dk6pj2mlxjvbg0662qacx4ylayqcxgg381fnfl5";
};
buildInputs = [jdk python];
}

View file

@ -1,10 +0,0 @@
{stdenv, fetchurl, jdk, python}:
stdenv.mkDerivation {
name = "antlr-2.7.6";
src = fetchurl {
url = http://www.antlr.org/download/antlr-2.7.6.tar.gz;
md5 = "17d8bf2e814f0a26631aadbbda8d7324";
};
buildInputs = [jdk python];
}

View file

@ -2239,7 +2239,7 @@ let
inherit cabal perl;
};
antlr = import ../development/tools/parsing/antlr/antlr-2.7.6.nix {
antlr = import ../development/tools/parsing/antlr/2.7.7.nix {
inherit fetchurl stdenv jdk python;
};