Files
kraken/shell.nix

24 lines
636 B
Nix
Raw Normal View History

2020-05-03 00:10:09 -04:00
2022-04-11 16:07:11 -04:00
let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
in with nixpkgs;
2020-05-03 00:10:09 -04:00
mkShell {
LANG="en_US.UTF-8";
nativeBuildInputs = [
chicken
#gambit
gambit-unstable
chez
wabt
wasmtime
wasm3
wasmer
kakoune
2022-04-11 16:07:11 -04:00
#(rustChannelOf { rustToolchain = ./rust-toolchain; }).rust
#(rustChannelOf { date = "2022-04-10"; channel = "nightly"; targets = [ "wasm32-wasi" ]; }).rust
(latest.rustChannels.nightly.rust.override { targets = [ "wasm32-wasi" ]; })
2022-04-12 00:14:09 -04:00
leiningen
2020-05-03 00:10:09 -04:00
];
}