Skip to content

Commit

Permalink
Fix crossShell script
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed Sep 15, 2023
1 parent 6dc690d commit 259059c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cross-shell.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# A simplest nix shell file with the project dependencies and
# a cross-compilation support.
{ pkgs, RUSTFLAGS, RUST_LOG, RUST_BACKTRACE }:
{ pkgs, RUST_LOG, RUST_BACKTRACE }:
pkgs.mkShell rec {
# Native project dependencies like build utilities and additional routines
# like container building, linters, etc.
Expand All @@ -25,5 +25,5 @@ pkgs.mkShell rec {
rustCrossHook
];

inherit RUSTFLAGS RUST_LOG RUST_BACKTRACE;
inherit RUST_LOG RUST_BACKTRACE;
}

0 comments on commit 259059c

Please sign in to comment.