This commit is contained in:
2026-06-21 23:55:17 -06:00
commit ef5362cc25
13 changed files with 167 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = inputs:
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs {
inherit system;
};
shake = pkgs.callPackage ./shake-wrapper.nix {};
in {
devShells.${system}.default = pkgs.mkShell {
packages = [
shake
pkgs.wabt
pkgs.nodejs
pkgs.wasmtime
pkgs.wasm-tools
pkgs.wac-cli
];
};
};
}