Skip to content

Commit

Permalink
fix crossSystem typo and cardano-shell
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverca22 committed Feb 25, 2020
1 parent 3ce679a commit 3e7195f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ let
system = systemTable.${target} or target;
pkgs = localLib.iohkNix.getPkgsDefault { inherit system config; };
sources = localLib.sources;
walletPkgs = import (import "${sources.cardano-wallet}/nix/sources.nix").nixpkgs {};
shellPkgs = import (import "${sources.cardano-shell}/nix/sources.nix").nixpkgs {};
walletPkgs = import "${sources.cardano-wallet}/nix" {};
shellPkgs = (import "${sources.cardano-shell}/nix/iohk-common.nix").getPkgs {};
inherit (pkgs.lib) optionalString optional;
crossSystem = lib: (crossSystemTable.${target} or (x: null)) lib;
crossSystem = lib: (crossSystemTable lib).${target} or null;
# TODO, nsis cant cross-compile with the nixpkgs daedalus currently uses
nsisNixPkgs = import localLib.sources.nixpkgs-nsis {};
installPath = ".daedalus";
Expand Down

0 comments on commit 3e7195f

Please sign in to comment.