chore: initial commit
This commit is contained in:
commit
a41e6b2faa
12 changed files with 794 additions and 0 deletions
29
flake.nix
Normal file
29
flake.nix
Normal 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
|
||||
]);
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue