aboutsummaryrefslogtreecommitdiff
path: root/Earthfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-17 07:36:42 -0700
committerFuwn <[email protected]>2024-06-17 07:36:42 -0700
commitdd67bcf487e17b58435d712e49fa7e7b9bc2a408 (patch)
treed38c4f71ac5b01a48d83c4d85c30e650ffe36a78 /Earthfile
parentfeat(useful): update content (diff)
downloadlocus-dd67bcf487e17b58435d712e49fa7e7b9bc2a408.tar.xz
locus-dd67bcf487e17b58435d712e49fa7e7b9bc2a408.zip
build: nix flake
Diffstat (limited to 'Earthfile')
-rw-r--r--Earthfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Earthfile b/Earthfile
index a6cd4ae..04d715f 100644
--- a/Earthfile
+++ b/Earthfile
@@ -20,7 +20,7 @@ docker:
SAVE IMAGE --push fuwn/locus:$tag
deps:
- ARG rustc="nightly-2024-02-01"
+ ARG rustc="nightly"
FROM clux/muslrust:$rustc
@@ -30,7 +30,7 @@ deps:
&& rm rustup-init
RUN ~/.cargo/bin/rustup target add x86_64-unknown-linux-musl
RUN echo "[build]\ntarget = \"x86_64-unknown-linux-musl\"" > ~/.cargo/config
- RUN rustup component add rust-src --toolchain nightly-2024-02-01-x86_64-unknown-linux-gnu
+ RUN rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
build:
FROM +deps