chore: initial commit

This commit is contained in:
Henri Saudubray 2026-03-27 10:53:26 +01:00
commit a41e6b2faa
Signed by: hms
GPG key ID: 7065F57ED8856128
12 changed files with 794 additions and 0 deletions

29
flake.nix Normal file
View file

@ -0,0 +1,29 @@
{
description = "Live-coding of a hybrid language runtime.";
inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
devShells."${system}".default = pkgs.mkShell {
packages =
with pkgs;
[ feedgnuplot ]
++ (with ocamlPackages; [
findlib
ocaml
ocaml-lsp
dune_3
zelus
]);
};
};
}