exa: remove perl dependency

The perl dependency does not seem to be necessary (anymore?).
This commit is contained in:
Daniël de Kok 2021-03-04 10:28:31 +01:00
parent 78aa2c4e93
commit 4f841cba84

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 ];