From 3daa2557773c800e62b9fd480686203712e6012a Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 24 Dec 2020 16:55:37 +0100 Subject: [PATCH] websocketpp: fix cross Apparently, that's all needed to get websocketpp to cross-compile. --- pkgs/development/libraries/websocket++/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/websocket++/default.nix b/pkgs/development/libraries/websocket++/default.nix index 6a7b091b536..d04cadb483b 100644 --- a/pkgs/development/libraries/websocket++/default.nix +++ b/pkgs/development/libraries/websocket++/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "12ffczcrryh74c1xssww35ic6yiy2l2xgdd30lshiq9wnzl2brgy"; }; - buildInputs = [ cmake ]; + nativeBuildInputs = [ cmake ]; meta = with stdenv.lib; { homepage = "https://www.zaphoyd.com/websocketpp/";