starship: remove openssl from buildInputs
No longer necessary, as v0.32.1 started using rustls. https://github.com/starship/starship/commit/d1b725a47cda1047546fb3998ff8f8a61ed4a48b
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, rustPlatform
|
{ stdenv, fetchFromGitHub, rustPlatform
|
||||||
, pkg-config, openssl
|
|
||||||
, libiconv, Security }:
|
, libiconv, Security }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
@@ -13,8 +12,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
sha256 = "047nvi231hzwjfci13x8lhszmaccb94mn5lvnyq24zb0im8br6d3";
|
sha256 = "047nvi231hzwjfci13x8lhszmaccb94mn5lvnyq24zb0im8br6d3";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||||
buildInputs = [ openssl ] ++ (stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ]);
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace src/utils.rs \
|
substituteInPlace src/utils.rs \
|
||||||
|
|||||||
Reference in New Issue
Block a user