Skip to content

Commit

Permalink
Fix misnamed packages binding (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyoung authored Apr 8, 2022
1 parent 51edbb1 commit 0d95159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
touch $out
'';

darwinPackages = {
crossPlatformPackages = {
icfs = buildLocalRustPackage "icfs";
icfs-fatfs = buildLocalRustPackage "icfs-fatfs";

Expand All @@ -159,7 +159,7 @@
touch $out
'';

packages = darwinPackages // pkgs.lib.optionalAttrs pkgs.stdenv.isDarwin {
packages = crossPlatformPackages // pkgs.lib.optionalAttrs pkgs.stdenv.isDarwin {
icfs-example-test = buildExampleTest "icfs" packages.icfs-example;
fatfs-example-test = buildExampleTest "fatfs" packages.fatfs-example;
};
Expand Down

0 comments on commit 0d95159

Please sign in to comment.