Ellen Emilia Anna Zscheile

Results 213 comments of Ellen Emilia Anna Zscheile

Would it be possible to add a unit test for this? (incl. for the previous change that affected this part of the code) Did we actually find out where the...

Was any further progress made on this? I know that the libgit2 support for sha256 still isn't stable, but this imo should be addressed independently of that.

I'd like to collect previous efforts on the nix-rust partial-port side (the further down the list the more it deviates from nix): - my old PR: https://github.com/NixOS/nix/pull/4697, improvements to the...

As it appears that there are now at least 4 tries to reimplement parts of Nix in Rust, it might be appropriate to isolate common functionality or patterns into crates...

@ldesgoui > Happy to get in touch over Matrix what's your Matrix identifier (username and server)? (mine's `@zseri:matrix.org`)

The imo hardest builtin to correctly implement/"find" is `builtins.match`, because it uses the C++ regex engine, and it is not simple to replicate it because every regex engine seems to...

Just mentioned it because besides https://github.com/YZITE/nix2js/issues/2, in `nix2js` that was an important problem, and the standard rust `regex` crate does afaik use a different syntax than the one expected by...

If we're lucky, one can (re)use most of the impl in `hermit-image-reader` (`ThinTree::try_from_image`)

romfs would probably be appropriate. The idea is to implement the initial parsing in the kernel, too, to avoid having to pass this information from the loader to the kernel,...

The main problem with tar files is that file names require some processing as they might be present as two separate null-byte-free byte slices, which have to be joined by...