also add a statically linked gcc

svn path=/nixpkgs/trunk/; revision=1585
This commit is contained in:
Armijn Hemel 2004-10-19 15:17:29 +00:00
parent 41a9a00c9b
commit 97ef0bce9a
3 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,5 @@
. $stdenv/setup
tar zxvf $src
mkdir $out
cp -a gcc-3.3.4/* $out

View file

@ -0,0 +1,10 @@
{stdenv}:
stdenv.mkDerivation {
name = "gcc-static-3.3.4";
builder = ./builder.sh;
src = ./gcc-3.3.4-static.tar.gz;
langC = true;
langCC = false;
langF77 = false;
}