Intercal: a little fix
Intercal doesn't build with the most recent version of flex - it complains with an "undefined reference to `yywrap'" in the link phase. So, we need to downgrade flex.
This commit is contained in:
parent
19a302f6f6
commit
9d82b3ebeb
|
@ -5143,7 +5143,9 @@ with pkgs;
|
|||
|
||||
ikarus = callPackage ../development/compilers/ikarus { };
|
||||
|
||||
intercal = callPackage ../development/compilers/intercal { };
|
||||
intercal = callPackage ../development/compilers/intercal {
|
||||
flex = flex_2_6_1; # Works with 2.5.35 too, but not 2.6.3
|
||||
};
|
||||
|
||||
irony-server = callPackage ../development/tools/irony-server/default.nix {
|
||||
# The repository of irony to use -- must match the version of the employed emacs
|
||||
|
|
Loading…
Reference in New Issue