Fixed Python StringTemplate library.
Most importantly, this change required updating the ANTLR 2.x expression to install the Python run-time library. While we're at it, we're building the run-time library for C++ and Java, too. There is still work to be done: the stringtemplate library doesn't find antlr.py without help yet. svn path=/nixpkgs/trunk/; revision=14489
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
{stdenv, fetchurl, jre}:
|
||||
{stdenv, fetchurl, jdk, python}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "antlr-2.7.6";
|
||||
builder = ./builder2.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.antlr.org/download/antlr-2.7.6.tar.gz;
|
||||
md5 = "17d8bf2e814f0a26631aadbbda8d7324";
|
||||
};
|
||||
inherit jre;
|
||||
buildInputs = [jdk python];
|
||||
}
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
source $stdenv/setup
|
||||
|
||||
tar zxvf $src
|
||||
cd antlr-*
|
||||
|
||||
ensureDir $out/bin
|
||||
ensureDir $out/lib/$name
|
||||
|
||||
cp antlr.jar $out/lib/$name
|
||||
|
||||
cat > $out/bin/antlr <<EOF
|
||||
#! $SHELL
|
||||
$jre/bin/java -cp $out/lib/$name/antlr.jar -Xms200M -Xmx400M antlr.Tool \$*
|
||||
EOF
|
||||
|
||||
chmod u+x $out/bin/antlr
|
||||
Reference in New Issue
Block a user