mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
d41dca2f5f
Currently, exa fails when being executed in a git repository with symlinks pointing to a non-existing location. This can happen quite often with garbage-collected result links, or in bazel repositories. A fix was PR'ed in September at https://github.com/ogham/exa/pull/584, but upstream seems to be not responding. Let's apply this patch until there's a release containing the fixes.
63 lines
2 KiB
Nix
63 lines
2 KiB
Nix
{ stdenv, fetchFromGitHub, fetchpatch, rustPlatform, cmake, perl, pkgconfig, zlib
|
||
, darwin, libiconv, installShellFiles
|
||
}:
|
||
|
||
with rustPlatform;
|
||
|
||
buildRustPackage rec {
|
||
pname = "exa";
|
||
version = "0.9.0";
|
||
|
||
cargoSha256 = "1hgjp23rjd90wyf0nq6d5akjxdfjlaps54dv23zgwjvkhw24fidf";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "ogham";
|
||
repo = "exa";
|
||
rev = "v${version}";
|
||
sha256 = "14qlm9zb9v22hxbbi833xaq2b7qsxnmh15s317200vz5f1305hhw";
|
||
};
|
||
|
||
patches = [
|
||
(fetchpatch {
|
||
# https://github.com/ogham/exa/pull/584
|
||
name = "fix-panic-on-broken-symlink-in-git-repository.patch";
|
||
url = "https://github.com/ogham/exa/pull/584/commits/a7a8e99cf3a15992afb2383435da0231917ffb54.patch";
|
||
sha256 = "0n5q483sz300jkp0sbb350hdinmkw7s6bmigdyr6ypz3fvygd9hx";
|
||
})
|
||
];
|
||
|
||
nativeBuildInputs = [ cmake pkgconfig perl installShellFiles ];
|
||
buildInputs = [ zlib ]
|
||
++ stdenv.lib.optionals stdenv.isDarwin [
|
||
libiconv darwin.apple_sdk.frameworks.Security ]
|
||
;
|
||
|
||
outputs = [ "out" "man" ];
|
||
|
||
postInstall = ''
|
||
installManPage contrib/man/exa.1
|
||
installShellCompletion \
|
||
--name exa contrib/completions.bash \
|
||
--name exa.fish contrib/completions.fish \
|
||
--name _exa contrib/completions.zsh
|
||
'';
|
||
|
||
# Some tests fail, but Travis ensures a proper build
|
||
doCheck = false;
|
||
|
||
meta = with stdenv.lib; {
|
||
description = "Replacement for 'ls' written in Rust";
|
||
longDescription = ''
|
||
exa 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. exa is
|
||
written in Rust, so it’s small, fast, and portable.
|
||
'';
|
||
homepage = https://the.exa.website;
|
||
license = licenses.mit;
|
||
maintainers = with maintainers; [ ehegnes lilyball globin ];
|
||
};
|
||
}
|