nanomsg: buildInputs -> nativeBuildInputs

Using `nativeBuildInputs` instead of `buildInputs` for the cmake dependency since using `buildInputs` prevents the package from being cross compiled to arm.
This commit is contained in:
Simon Pettersson 2020-07-23 09:08:06 +02:00 committed by Frederik Rietdijk
parent 4e0f91170f
commit 80f960575d

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "01ddfzjlkf2dgijrmm3j3j8irccsnbgfvjcnwslsfaxnrmrq5s64";
};
buildInputs = [ cmake ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description= "Socket library that provides several common communication patterns";