Skip to content

Commit

Permalink
zenith: re-enable aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
bbigras committed May 26, 2020
1 parent 1a40943 commit ff2e833
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/tools/system/zenith/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ rustPlatform.buildRustPackage rec {

buildInputs = stdenv.lib.optionals stdenv.isDarwin [ IOKit ];

preBuild = ''
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=gcc
'';

meta = with stdenv.lib; {
description = "Sort of like top or htop but with zoom-able charts, network, and disk usage";
homepage = "https://github.com/bvaisvil/zenith";
license = licenses.mit;
maintainers = with maintainers; [ bbigras ];
# doesn't build on aarch64 https://github.com/bvaisvil/zenith/issues/19
platforms = platforms.x86;
platforms = platforms.all;
};
}

0 comments on commit ff2e833

Please sign in to comment.