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:
Joachim Fasting 2016-07-22 23:42:50 +02:00
parent 46c924c4a2
commit 597b0b0144
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -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 { };