wvstreams: compile with gcc46, potentially fixes #8725

This commit is contained in:
Pascal Wittmann 2015-07-09 21:55:15 +02:00
parent 463385fc22
commit 3a96152c2c

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, qt4, dbus, zlib, openssl, readline, perl }: { stdenv, gcc46, fetchurl, qt4, dbus, zlib, openssl, readline, perl }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "wvstreams-4.6.1"; name = "wvstreams-4.6.1";
@ -16,7 +16,7 @@ stdenv.mkDerivation {
sed -e '1i#include <unistd.h>' -i $(find . -name '*.c' -o -name '*.cc') sed -e '1i#include <unistd.h>' -i $(find . -name '*.c' -o -name '*.cc')
''; '';
buildInputs = [ qt4 dbus zlib openssl readline perl ]; buildInputs = [ gcc46 qt4 dbus zlib openssl readline perl ];
meta = { meta = {
description = "Network programming library in C++"; description = "Network programming library in C++";