Kento Okura
Kento Okura
I am trying to package [Nota](https://github.com/nota-lang/nota) in the following flake: ``` { inputs = { dream2nix.url = "github:nix-community/dream2nix"; nota.url = "https://registry.npmjs.com/@nota-lang/nota/-/nota-0.4.12.tgz"; nota.flake = false; }; outputs = { self, dream2nix,...
Building rust-ocaml-starter error: none of the selected packages contains these features: cc, dune
I am trying to build [rust-ocaml-starter](https://github.com/kentookura/rust-ocaml-starter) with `cargo2nix`. The current flake fails to build with the following error: ``` $ nix build -L crate-ocaml-build> unpacking sources crate-ocaml-build> unpacking source archive...
The following code from https://github.com/kentookura/ocaml-forester/blob/main/test/store.ml ```ocaml open Lwt.Syntax open Core module Store = Irmin_git_unix.FS.KV(Rep.Tree) module Info = Irmin_unix.Info(Store.Info) module Sync = Irmin.Sync.Make(Store) module Tree = Store.Tree let config = Irmin_git.config...
The implementation is copied from `lib_eio_posix/fs.ml`, simply replacing a forward slash. I added the test case to the windows directory since the cross-platform test has some hard-coded forward slashes. The...
Hello, in the context of using this library via `irmin`, we've encountered an issue. The following code fails on both nixOS 24.05 via WSL (@kentookura), and macOS 14.5 (@jonsterling). however...
I would like there to be better error handling when pinning dependencies. I had added a `*.opam.template` file and the opam file was updated after running dune build. The OCaml...
``` error: builder for '/nix/store/zpssmmd2cifm4xlsyksnx04vmskx0iwi-eio_posix-1.1.drv' failed with exit code 1; last 20 log lines: > Running phase: unpackPhase > unpacking source archive /nix/store/2giwhf2h39bchbz2h8gmyydk0xzyqivh-eio-1.1.tbz > source root is eio-1.1 > setting...
I am experimenting with Nottui and would like to display diagnostics in my application. I am aware that terminal rendering _used_ to be handled with notty. From looking at the...
Hello, I have the following code which raises an inscrutable error: ```ocaml open Lwt.Syntax module Store = Irmin_git_unix.FS.KV(Irmin.Contents.String) module Info = Irmin_unix.Info(Store.Info) module Sync = Irmin.Sync.Make(Store) module Config = struct...
I will be using the dream-html website quite a lot and expect do run into some edge cases with the markup converter. I'll use this issue to keep track of...