mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
parent
3f7d2f72e7
commit
874411c0e3
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, cmake, boost, openssl }:
|
||||
{ stdenv, fetchurl, cmake, boost, openssl, asio }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cpp-netlib-${version}";
|
||||
|
@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ cmake boost openssl ];
|
||||
|
||||
# This can be removed when updating to 0.13, see https://github.com/cpp-netlib/cpp-netlib/issues/629
|
||||
propagatedBuildInputs = [ asio ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCPP-NETLIB_BUILD_SHARED_LIBS=ON"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue