about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-08-04 15:17:42 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-08-04 15:17:42 +0300
commit008fd5fcf5f45c6478ccd3d52ec923052eccb932 (patch)
tree14d454f88bd0f02fe550ba5b68d987573e8820fc /pkgs/development/tools/parsing
parent7a337cde318020a0f91702bfefee85a7b31be06f (diff)
parent20f1388c3fb7c1c56367fd96fd21cfd316f465b7 (diff)
downloadnixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.tar
nixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.tar.gz
nixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.tar.bz2
nixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.tar.lz
nixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.tar.xz
nixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.tar.zst
nixlib-008fd5fcf5f45c6478ccd3d52ec923052eccb932.zip
Merge remote-tracking branch 'upstream/master' into staging
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/antlr/2.7.7.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/antlr/2.7.7.nix b/pkgs/development/tools/parsing/antlr/2.7.7.nix
index cafb076aa811..519540ef52ae 100644
--- a/pkgs/development/tools/parsing/antlr/2.7.7.nix
+++ b/pkgs/development/tools/parsing/antlr/2.7.7.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, jdk, python}:
+{ stdenv, fetchurl, jdk, python2 }:
 
 stdenv.mkDerivation {
   name = "antlr-2.7.7";
@@ -7,7 +7,8 @@ stdenv.mkDerivation {
     sha256 = "1ffvcwdw73id0dk6pj2mlxjvbg0662qacx4ylayqcxgg381fnfl5";
   };
   patches = [ ./2.7.7-fixes.patch ];
-  buildInputs = [jdk python];
+  buildInputs = [ jdk ];
+  nativeBuildInputs = [ python2 ];
 
   meta = with stdenv.lib; {
     description = "Powerful parser generator";