We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc46fe commit 908d9e5Copy full SHA for 908d9e5
flake.nix
@@ -86,8 +86,13 @@
86
87
# Cross-compiled packages
88
89
- villas-node-x86_64-linux = if pkgs.system == "x86_64-linux" then pkgs.villas-node else pkgs.pkgsCross.x86_64-linux.villas-node;
90
- villas-node-aarch64-linux = if pkgs.system == "aarch64-linux" then pkgs.villas-node else pkgs.pkgsCross.aarch64-multiplatform.villas-node;
+ villas-node-x86_64-linux =
+ if pkgs.system == "x86_64-linux" then pkgs.villas-node else pkgs.pkgsCross.gnu64.villas-node;
91
+ villas-node-aarch64-linux =
92
+ if pkgs.system == "aarch64-linux" then
93
+ pkgs.villas-node
94
+ else
95
+ pkgs.pkgsCross.aarch64-multiplatform.villas-node;
96
97
dockerImage-x86_64-linux = pkgs.dockerTools.buildLayeredImage {
98
name = "villas-node";
0 commit comments