Skip to content

mobusoperandi/eelco

Repository files navigation

eelco

This is a CLI that reads markdown files, extracts Nix examples from them and tests these examples.

Two kinds of examples are supported:

  1. expression examples
  2. repl examples

Expression examples look like this:

```nix
let n = 1 + 1; in assert n == 2; n
```

They are nix expressions inside of fenced code blocks. The first word in their info string is nix. The expression is passed to Nix for evaluation as nix eval --expr <EXPRESSION>. It is expected of the author to demonstrate and prove their points using assertions.

Repl exaples look like this;

```nix-repl
nix-repl> a = 1

nix-repl> a + 1
2

```

Repl examples will be evaluated by the real Nix repl. At the moment, expressions and assignments queries are supported. A line that follows an expression query will be used as an assertion. Blank lines matter. Even trailing ones.

Examples can be skipped by including the word skip in the info string.

The name eelco is in homage to the original author of Nix, Eelco Dolstra.