Merge pull request #203273 from xzfc/wapm

wapm: fix build
This commit is contained in:
Alexander Bantyev 2022-11-27 23:45:55 +04:00 committed by GitHub
commit c8ae32968c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, perl
, libiconv
, openssl
, rustPlatform
@ -21,6 +22,8 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-dv04AXOnzizjq/qx3qy524ylQHgE4gIBgeYI+2IRTug=";
nativeBuildInputs = [ perl ];
buildInputs = [ libiconv openssl ]
++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];