exa: fix on aarch64-darwin (#133660)

This commit is contained in:
Jörg Thalheim 2021-08-16 02:42:43 +01:00 committed by GitHub
parent 71ab3c29f9
commit 6adca8026c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,16 +18,21 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-ah8IjShmivS6IWL3ku/4/j+WNr/LdUnh1YJnPdaFdcM=";
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
nativeBuildInputs = [
cmake pkg-config installShellFiles
# ghc is not supported on aarch64-darwin yet.
] ++ lib.optional (stdenv.hostPlatform.system != "aarch64-darwin") pandoc;
buildInputs = [ zlib ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
outputs = [ "out" "man" ];
outputs = [ "out" ] ++ lib.optional (stdenv.hostPlatform.system != "aarch64-darwin") "man";
postInstall = ''
postInstall = lib.optionalString (stdenv.hostPlatform.system != "aarch64-darwin") ''
pandoc --standalone -f markdown -t man man/exa.1.md > man/exa.1
pandoc --standalone -f markdown -t man man/exa_colors.5.md > man/exa_colors.5
installManPage man/exa.1 man/exa_colors.5
'' + ''
installShellCompletion \
--name exa completions/completions.bash \
--name exa.fish completions/completions.fish \