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:
parent
2345d0c8aa
commit
22e1286711
10
pkgs/development/tools/parsing/antlr/2.7.7.nix
Normal file
10
pkgs/development/tools/parsing/antlr/2.7.7.nix
Normal 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];
|
||||
}
|
|
@ -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];
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue