summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/flex/builder.sh
blob: 4c0975805508ccc7d3356c2dd8b3e00f6ca97626 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

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