2025-08-05 14:55:13 +02:00
|
|
|
{
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
2025-08-14 11:38:53 +02:00
|
|
|
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
|
2025-08-05 14:55:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
outputs = inputs: let
|
|
|
|
|
rensa = import ./lib {
|
2025-08-14 11:38:53 +02:00
|
|
|
inherit (inputs.nixpkgs-lib) lib;
|
2025-08-05 14:55:13 +02:00
|
|
|
};
|
|
|
|
|
in
|
|
|
|
|
rensa.buildWith {
|
|
|
|
|
inherit inputs;
|
|
|
|
|
cellsFrom = ./cells;
|
2025-08-05 16:15:24 +02:00
|
|
|
cellBlocks = with rensa.blocks; [
|
|
|
|
|
(simple "test")
|
2025-08-06 10:13:34 +02:00
|
|
|
(simple "devShells")
|
2025-08-05 14:55:13 +02:00
|
|
|
];
|
|
|
|
|
} {};
|
|
|
|
|
}
|