2023-07-29 13:35:32 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, gitSupport ? true
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, rustPlatform
|
|
|
|
|
, cmake
|
|
|
|
|
, pandoc
|
|
|
|
|
, pkg-config
|
|
|
|
|
, zlib
|
2023-09-29 05:40:14 +00:00
|
|
|
|
, darwin
|
2023-07-29 13:35:32 +00:00
|
|
|
|
, libiconv
|
|
|
|
|
, installShellFiles
|
2024-04-02 21:45:48 +00:00
|
|
|
|
# once eza upstream gets support for setting up a compatibility symlink for exa, we should change
|
2023-09-12 06:19:44 +00:00
|
|
|
|
# the handling here from postInstall to passing the required argument to the builder.
|
|
|
|
|
, exaAlias ? true
|
2023-07-29 13:35:32 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
|
pname = "eza";
|
2024-05-16 14:44:39 +00:00
|
|
|
|
version = "0.18.16";
|
2023-07-29 13:35:32 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-08-13 05:50:10 +00:00
|
|
|
|
owner = "eza-community";
|
2023-07-29 13:35:32 +00:00
|
|
|
|
repo = "eza";
|
|
|
|
|
rev = "v${version}";
|
2024-05-16 14:44:39 +00:00
|
|
|
|
hash = "sha256-VaQLPQseLgxzDMnlMsfh5XGhjNYIBrMDBm2JsY2Gou4=";
|
2023-07-29 13:35:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-05-16 14:44:39 +00:00
|
|
|
|
cargoHash = "sha256-zxIGYNdgAJQHng1jfaJPwAlbflJi0W5osAf5F2Is0ws=";
|
2023-07-29 13:35:32 +00:00
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
|
|
|
|
|
buildInputs = [ zlib ]
|
2023-09-29 05:40:14 +00:00
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
|
2023-07-29 13:35:32 +00:00
|
|
|
|
|
|
|
|
|
buildNoDefaultFeatures = true;
|
|
|
|
|
buildFeatures = lib.optional gitSupport "git";
|
|
|
|
|
|
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
pandoc --standalone -f markdown -t man man/eza.1.md > man/eza.1
|
|
|
|
|
pandoc --standalone -f markdown -t man man/eza_colors.5.md > man/eza_colors.5
|
2023-08-13 05:50:10 +00:00
|
|
|
|
pandoc --standalone -f markdown -t man man/eza_colors-explanation.5.md > man/eza_colors-explanation.5
|
|
|
|
|
installManPage man/eza.1 man/eza_colors.5 man/eza_colors-explanation.5
|
2023-07-29 13:35:32 +00:00
|
|
|
|
installShellCompletion \
|
|
|
|
|
--bash completions/bash/eza \
|
|
|
|
|
--fish completions/fish/eza.fish \
|
|
|
|
|
--zsh completions/zsh/_eza
|
2023-09-12 06:19:44 +00:00
|
|
|
|
'' + lib.optionalString exaAlias ''
|
|
|
|
|
ln -s eza $out/bin/exa
|
2023-07-29 13:35:32 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "A modern, maintained replacement for ls";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
eza is a modern replacement for ls. It uses colours for information by
|
|
|
|
|
default, helping you distinguish between many types of files, such as
|
|
|
|
|
whether you are the owner, or in the owning group. It also has extra
|
|
|
|
|
features not present in the original ls, such as viewing the Git status
|
|
|
|
|
for a directory, or recursing into directories with a tree view. eza is
|
|
|
|
|
written in Rust, so it’s small, fast, and portable.
|
|
|
|
|
'';
|
2023-08-13 05:50:10 +00:00
|
|
|
|
homepage = "https://github.com/eza-community/eza";
|
2023-09-04 02:58:11 +00:00
|
|
|
|
changelog = "https://github.com/eza-community/eza/releases/tag/v${version}";
|
2023-07-29 13:35:32 +00:00
|
|
|
|
license = licenses.mit;
|
2023-08-25 13:37:47 +00:00
|
|
|
|
mainProgram = "eza";
|
2023-09-20 19:59:55 +00:00
|
|
|
|
maintainers = with maintainers; [ cafkafk _9glenda ];
|
2023-09-04 02:58:11 +00:00
|
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2023-07-29 13:35:32 +00:00
|
|
|
|
};
|
|
|
|
|
}
|