eza: use by-name

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
Christina Sørensen 2023-09-29 07:40:14 +02:00
parent 4919a8cdcc
commit db63f9358f
No known key found for this signature in database
GPG key ID: 26C542FD97F965CE
2 changed files with 2 additions and 6 deletions

View file

@ -7,7 +7,7 @@
, pandoc
, pkg-config
, zlib
, Security
, darwin
, libiconv
, installShellFiles
# once eza upstream gets support for setting up a compatibilty symlink for exa, we should change
@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
buildInputs = [ zlib ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
buildNoDefaultFeatures = true;
buildFeatures = lib.optional gitSupport "git";

View file

@ -8037,10 +8037,6 @@ with pkgs;
expliot = callPackage ../tools/security/expliot { };
eza = callPackage ../tools/misc/eza {
inherit (darwin.apple_sdk.frameworks) Security;
};
f2fs-tools = callPackage ../tools/filesystems/f2fs-tools { };
Fabric = with python3Packages; toPythonApplication fabric;