about summary refs log tree commit diff
path: root/pkgs/tools/misc/exa
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-03-04 10:28:31 +0100
committerDaniël de Kok <me@danieldk.eu>2021-03-04 10:29:09 +0100
commit4f841cba8409fa642294069c355ee12abf8c3398 (patch)
tree6f8367414de4ceebd836ad2d60e65e8441e91839 /pkgs/tools/misc/exa
parent78aa2c4e9369df3c20f5e373d28b4915e327a103 (diff)
exa: remove perl dependency
The perl dependency does not seem to be necessary (anymore?).
Diffstat (limited to 'pkgs/tools/misc/exa')
-rw-r--r--pkgs/tools/misc/exa/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/exa/default.nix b/pkgs/tools/misc/exa/default.nix
index a9d2a7b122fe4..326a978f06064 100644
--- a/pkgs/tools/misc/exa/default.nix
+++ b/pkgs/tools/misc/exa/default.nix
@@ -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 ];