cppcms: fix strict deps

move python3 from buildInputs to nativeBuildInputs
This commit is contained in:
Reno Dakota 2024-06-19 01:12:06 +00:00
parent 6d48747e20
commit f88ef5b4f9
No known key found for this signature in database

View File

@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-aXAxx9FB/dIVxr5QkLZuIQamO7PlLwnugSDo78bAiiE=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ pcre zlib python3 openssl ];
nativeBuildInputs = [ cmake python3 ];
buildInputs = [ pcre zlib openssl ];
strictDeps = true;