Build the examples explicitly on/for Linux
This commit is contained in:
parent
61cc348281
commit
01f73e486b
3 changed files with 15 additions and 3 deletions
|
@ -1,2 +1,6 @@
|
||||||
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
|
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
|
||||||
import <nixpkgs> {}
|
import <nixpkgs> {
|
||||||
|
# We specify the architecture explicitly. Use a Linux remote builder when
|
||||||
|
# calling arion from other platforms.
|
||||||
|
system = "x86_64-linux";
|
||||||
|
}
|
||||||
|
|
|
@ -1,2 +1,6 @@
|
||||||
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
|
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
|
||||||
import <nixpkgs> {}
|
import <nixpkgs> {
|
||||||
|
# We specify the architecture explicitly. Use a Linux remote builder when
|
||||||
|
# calling arion from other platforms.
|
||||||
|
system = "x86_64-linux";
|
||||||
|
}
|
||||||
|
|
|
@ -1,2 +1,6 @@
|
||||||
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
|
# Instead of pinning Nixpkgs, we can opt to use the one in NIX_PATH
|
||||||
import <nixpkgs> {}
|
import <nixpkgs> {
|
||||||
|
# We specify the architecture explicitly. Use a Linux remote builder when
|
||||||
|
# calling arion from other platforms.
|
||||||
|
system = "x86_64-linux";
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue