Merge pull request #115056 from danieldk/exa-no-perl

exa: remove perl dependency
This commit is contained in:
Bernardo Meurer
2021-03-04 19:43:51 +00:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, cmake, pandoc, perl, pkg-config, zlib
{ lib, stdenv, fetchFromGitHub, rustPlatform, cmake, pandoc, pkg-config, zlib
, Security, libiconv, installShellFiles
}:
@@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "18y4v1s102lh3gvgjwdd66qlsr75wpwpcj8zsk5y5r95a405dkfm";
};
nativeBuildInputs = [ cmake pkg-config perl installShellFiles pandoc ];
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
buildInputs = [ zlib ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];