summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-03-17 03:04:52 -0400
committerLLLL Colonq <llll@colonq>2025-03-17 03:04:52 -0400
commit09f04692782e3cd35fbfd0f4f1601cecd29b862c (patch)
tree6fd989cb71beabb52455da0e5a6b6f0d2123f4b4 /flake.nix
parent7407dc2a99ce74ae733c350ad239d2a4017e0684 (diff)
Use rapier
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix16
1 files changed, 4 insertions, 12 deletions
diff --git a/flake.nix b/flake.nix
index 78a8767..15c4e3d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -56,18 +56,7 @@
doCheck = false;
});
- teleia = craneLib.buildTrunkPackage (commonArgs // {
- inherit cargoArtifacts;
- wasm-bindgen-cli = pkgs.wasm-bindgen-cli.override {
- version = "0.2.90";
- hash = "sha256-X8+DVX7dmKh7BgXqP7Fp0smhup5OO8eWEhn26ODYbkQ=";
- cargoHash = "sha256-ckJxAR20GuVGstzXzIj1M0WBFj5eJjrO2/DRMUK5dwM=";
- };
- });
- in {
- packages.default = teleia;
-
- devShells.default = craneLib.devShell {
+ shell = craneLib.devShell {
packages = [
pkgs.trunk
pkgs.rust-analyzer
@@ -97,5 +86,8 @@
]
}";
};
+ in {
+ inherit shell;
+ devShells.default = shell;
});
}