mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
add boost
svn path=/nixpkgs/trunk/; revision=8874
This commit is contained in:
parent
ad0ec5a27c
commit
400499686e
2 changed files with 13 additions and 0 deletions
9
pkgs/development/libraries/boost/default.nix
Normal file
9
pkgs/development/libraries/boost/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue