9 lines
172 B
Bash
9 lines
172 B
Bash
|
export buildinputs="$yacc"
|
||
|
. $stdenv/setup || exit 1
|
||
|
|
||
|
tar xvfz $src || exit 1
|
||
|
cd flex-* || exit 1
|
||
|
./configure --prefix=$out || exit 1
|
||
|
make || exit 1
|
||
|
make install || exit 1
|