* libIDL requires flex, which requires bison, which requires m4...

svn path=/nixpkgs/trunk/; revision=339
This commit is contained in:
Eelco Dolstra
2003-08-22 13:39:36 +00:00
parent a78e923fe7
commit ce22795c1c
8 changed files with 75 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh
. $stdenv/setup || exit 1
export PATH=$m4/bin:$PATH
tar xvfj $src || exit 1
cd bison-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
+15
View File
@@ -0,0 +1,15 @@
Package(
[ ("name", "bison-1.875")
, ("build", Relative("bison/bison-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://ftp.nluug.nl/pub/gnu/bison/bison-1.875.tar.bz2")
, ("md5", "b7f8027b249ebd4dd0cc948943a71af0")
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
, ("m4", IncludeFix("gnum4/gnum4.fix"))
]
)