add boost

svn path=/nixpkgs/trunk/; revision=8874
This commit is contained in:
Armijn Hemel 2007-06-12 15:35:57 +00:00
parent ad0ec5a27c
commit 400499686e
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "boost-1.34.0";
src = fetchurl {
url = http://kent.dl.sourceforge.net/sourceforge/boost/boost_1_34_0.tar.bz2;
sha256 = "1lpganl8grvmy8rsbps5688yqiswvixjwz15d0kjfndp87xbhp25";
};
}

View file

@ -1214,6 +1214,10 @@ rec {
inherit fetchurl stdenv;
};
boost = import ../development/libraries/boost {
inherit fetchurl stdenv;
};
cairo = import ../development/libraries/cairo {
inherit fetchurl stdenv pkgconfig x11 fontconfig freetype zlib libpng;
};