lbr-prelude 1.0.2

LambdaBuffers runtime library for the Prelude schema.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ inputs, ... }:
{
  perSystem =
    { config, system, ... }:
    let
      rustFlake = inputs.flake-lang.lib.${system}.rustFlake {
        src = ./.;
        crateName = "lbr-prelude";
        extraSources = [
          config.packages.lbr-prelude-derive-rust-src
        ];
        devShellHook = config.settings.shell.hook;
      };
    in
    {
      inherit (rustFlake) packages checks devShells;
    };
}