gradm: fix build on i686
This is a regression introduced by my update at e4b7b7b028
Turns out this was actually required to build the package on i686; without it,
the build fails with
```
/nix/store/[...]-flex-2.6.0/lib/libfl.so: undefined reference to `yylex'
```
for some reason ... the easiest solution is to just use flex_2_5_35, which does
build successfully.
This commit is contained in:
parent
46c924c4a2
commit
597b0b0144
@ -10848,7 +10848,9 @@ in
|
||||
|
||||
gpm-ncurses = self.gpm.override { inherit ncurses; };
|
||||
|
||||
gradm = callPackage ../os-specific/linux/gradm { };
|
||||
gradm = callPackage ../os-specific/linux/gradm {
|
||||
flex = flex_2_5_35;
|
||||
};
|
||||
|
||||
hdparm = callPackage ../os-specific/linux/hdparm { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user