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 87a13c6 commit 32093ffCopy full SHA for 32093ff
nix/ext/pg_mooncake.nix
@@ -12,9 +12,19 @@
12
}:
13
14
let
15
- rustVersion = "1.80.0";
16
- rustc = rust-bin.stable."${rustVersion}".rustc;
17
- cargo = rust-bin.stable."${rustVersion}".cargo;
+ rustVersion = "1.81.0";
+ targets = [
+ "aarch64-apple-darwin"
18
+ "x86_64-apple-darwin"
19
+ "x86_64-unknown-linux-gnu"
20
+ "aarch64-unknown-linux-gnu"
21
+ ];
22
+ rustc = rust-bin.stable."${rustVersion}".default.override {
23
+ inherit targets;
24
+ };
25
+ cargo = rust-bin.stable."${rustVersion}".default.override {
26
27
28
in
29
stdenv.mkDerivation rec {
30
pname = "pg_mooncake";
0 commit comments