mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
amber: Fix build (#120126)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
027250d7be
commit
3238e9f2e0
@ -1,5 +1,5 @@
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform
|
||||
, Security
|
||||
, libiconv, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoSha256 = "sha256-opRinhTmhZxpAwHNiVOLXL8boQf09Y1NXrWQ6HWQYQ0=";
|
||||
|
||||
buildInputs = lib.optional stdenv.isDarwin Security;
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A code search-and-replace tool";
|
||||
|
Loading…
Reference in New Issue
Block a user