boost: Update depdendent packages

This commit is contained in:
William A. Kennington III
2014-09-21 17:20:59 -07:00
parent be2c1d7908
commit 31220480d8
58 changed files with 105 additions and 95 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, scons, pkgconfig, openssl, protobuf, boost155, zlib}:
{ stdenv, fetchurl, scons, pkgconfig, openssl, protobuf, boost, zlib}:
stdenv.mkDerivation rec {
name = "rippled-${version}";
@@ -11,9 +11,9 @@ stdenv.mkDerivation rec {
patches = [ ./scons-env.patch ];
buildInputs = [ scons pkgconfig openssl protobuf boost155 zlib ];
buildInputs = [ scons pkgconfig openssl protobuf boost zlib ];
RIPPLED_BOOST_HOME = boost155.out;
RIPPLED_BOOST_HOME = boost.out;
RIPPLED_ZLIB_HOME = zlib.out;
buildPhase = "scons build/rippled";
@@ -29,4 +29,4 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.linux;
};
}
}