Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0cc9ad72d46f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c0627e5b5ba0
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 29, 2020

  1. monero-gui: fixup of 7a498ab

    The INSTALL_PATH has been fixed upstream and this was causing
    the binary to be under $out/bin/bin/.
    rnhmjoj committed Oct 29, 2020
    Copy the full SHA
    b0a06f1 View commit details
  2. Merge pull request #102004 from rnhmjoj/monero

    monero-gui: fixup of 7a498ab
    rnhmjoj authored Oct 29, 2020
    Copy the full SHA
    c0627e5 View commit details
Showing with 1 addition and 5 deletions.
  1. +1 −5 pkgs/applications/blockchains/monero-gui/default.nix
6 changes: 1 addition & 5 deletions pkgs/applications/blockchains/monero-gui/default.nix
Original file line number Diff line number Diff line change
@@ -75,11 +75,7 @@ stdenv.mkDerivation rec {
'add_subdirectory(monero EXCLUDE_FROM_ALL)'
'';

preConfigure = ''
# because $out needs to be expanded
cmakeFlagsArray+=("-DCMAKE_INSTALL_PREFIX=$out/bin")
cmakeFlagsArray+=("-DARCH=${arch}")
'';
cmakeFlags = [ "-DARCH=${arch}" ];

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