cargo-make: fix darwin build (#120312)
* cargo-make: format with nixpkgs-fmt * cargo-make: fix darwin build
This commit is contained in:
parent
8def3d6c05
commit
8e585bbce6
@ -1,5 +1,14 @@
|
|||||||
{ lib, stdenv, fetchurl, runCommand, fetchCrate, rustPlatform, Security, openssl, pkg-config
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, runCommand
|
||||||
|
, fetchCrate
|
||||||
|
, rustPlatform
|
||||||
|
, Security
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
, SystemConfiguration
|
, SystemConfiguration
|
||||||
|
, libiconv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
@ -14,7 +23,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ openssl ]
|
buildInputs = [ openssl ]
|
||||||
++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
|
++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration libiconv ];
|
||||||
|
|
||||||
cargoSha256 = "sha256-Upegh3W31sTaXl0iHZ3HiYs9urgXH/XhC0vQBAWvDIc=";
|
cargoSha256 = "sha256-Upegh3W31sTaXl0iHZ3HiYs9urgXH/XhC0vQBAWvDIc=";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user