Skip to content

Commit

Permalink
ioc/tests/cross: fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Sep 15, 2023
1 parent 1c9a6f1 commit 96c02c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ioc/tests/cross/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
crossSystem,
system-name,
...
}: let
inherit (pkgs) epnixLib;
Expand All @@ -19,7 +20,7 @@
emulator = pkgs.lib.replaceStrings ["\""] ["\\\""] (hostPlatform.emulator pkgs);
in
pkgs.nixosTest {
name = "cross-for-${system}";
name = "cross-for-${system-name}";
meta.maintainers = with epnixLib.maintainers; [minijackson];

nodes.machine = {};
Expand Down
2 changes: 1 addition & 1 deletion ioc/tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ with pkgs.lib;
in
nameValuePair
"cross-for-${system-name}"
(import ./cross/default.nix (args // {inherit crossSystem;}));
(import ./cross/default.nix (args // {inherit crossSystem system-name;}));

systemsToCheck = with systems.examples; [
# Maybe one day...
Expand Down

0 comments on commit 96c02c6

Please sign in to comment.