Unverified Commit 7dc7b559 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #257975 from cafkafk/cafk-eza-by-name

eza: use by-name
parents edc45093 db63f935
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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";
+0 −4
Original line number Diff line number Diff line
@@ -8041,10 +8041,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;