* Renamed pkgs-ng to pkgs.

svn path=/nixpkgs/trunk/; revision=502
This commit is contained in:
Eelco Dolstra
2003-11-14 09:59:13 +00:00
parent 6b2bb22474
commit 48c3faca51
141 changed files with 0 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh
buildinputs="$m4"
. $stdenv/setup || exit 1
tar xvfj $src || exit 1
cd bison-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
@@ -0,0 +1,13 @@
{stdenv, fetchurl, m4}:
assert !isNull m4;
derivation {
name = "bison-1.875";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/bison/bison-1.875.tar.bz2;
md5 = "b7f8027b249ebd4dd0cc948943a71af0";
};
stdenv = stdenv;
m4 = m4;
}