mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
bc: flex is also a runtime dep
This is one of the rare times when flex is not just needed at build time. When cross compiling, we will need 2 versions of flex - one for the local system and one for the cross system.
This commit is contained in:
parent
e343a85cfb
commit
5767ea8955
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||
# Libraries for build
|
||||
buildPackages.readline buildPackages.ncurses
|
||||
];
|
||||
buildInputs = [ readline ];
|
||||
buildInputs = [ readline flex ];
|
||||
|
||||
doCheck = true; # not cross
|
||||
|
||||
|
|
Loading…
Reference in a new issue