Skip to content

Commit

Permalink
monero-gui: fix aarch64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
rnhmjoj committed Oct 8, 2020
1 parent b5ca332 commit 843c5da
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/applications/blockchains/monero-gui/default.nix
Expand Up @@ -18,6 +18,13 @@ with stdenv.lib;

assert trezorSupport -> all (x: x!=null) [ libusb1 protobuf python3 ];

let
arch = if stdenv.isx86_64 then "x86-64"
else if stdenv.isi686 then "i686"
else if stdenv.isAarch64 then "armv8-a"
else throw "unsupported architecture";
in

stdenv.mkDerivation rec {
pname = "monero-gui";
version = "0.17.0.1";
Expand Down Expand Up @@ -71,7 +78,10 @@ stdenv.mkDerivation rec {
'add_subdirectory(monero EXCLUDE_FROM_ALL)'
'';

cmakeFlags = [ "-DCMAKE_INSTALL_PREFIX=$out/bin" ];
cmakeFlags = [
"-DCMAKE_INSTALL_PREFIX=$out/bin"
"-DARCH=${arch}"
];

desktopItem = makeDesktopItem {
name = "monero-wallet-gui";
Expand Down

0 comments on commit 843c5da

Please sign in to comment.