Merge pull request #44416 from dotlambda/antlr-python2

antlr: explicitly use python2
This commit is contained in:
Frederik Rietdijk 2018-08-03 20:44:03 +02:00 committed by GitHub
commit 57852282cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, jdk, python}: { stdenv, fetchurl, jdk, python2 }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "antlr-2.7.7"; name = "antlr-2.7.7";
@ -7,7 +7,8 @@ stdenv.mkDerivation {
sha256 = "1ffvcwdw73id0dk6pj2mlxjvbg0662qacx4ylayqcxgg381fnfl5"; sha256 = "1ffvcwdw73id0dk6pj2mlxjvbg0662qacx4ylayqcxgg381fnfl5";
}; };
patches = [ ./2.7.7-fixes.patch ]; patches = [ ./2.7.7-fixes.patch ];
buildInputs = [jdk python]; buildInputs = [ jdk ];
nativeBuildInputs = [ python2 ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Powerful parser generator"; description = "Powerful parser generator";