WASM to BEAM compiler and embedder
{
  description = "WASM Embedder";

  inputs.flake-utils.url = "github:numtide/flake-utils";

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.simpleFlake {
      inherit self nixpkgs;
      name = "WASM Embedder";
      shell = ./shell.nix;
    };
}