d74192ee38
svn path=/nixpkgs/trunk/; revision=823
14 lines
209 B
Bash
Executable file
14 lines
209 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
export buildinputs="$yacc $m4"
|
|
. $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd flex-*
|
|
./configure --prefix=$out
|
|
make
|
|
make install
|
|
|
|
mkdir $out/nix-support
|
|
echo "$m4" > $out/nix-support/propagated-build-inputs
|