mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
18 lines
335 B
Nix
18 lines
335 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
};
|
|
|
|
outputs = inputs: let
|
|
rensa = import ./lib {
|
|
inherit (inputs.nixpkgs) lib;
|
|
};
|
|
in
|
|
rensa.buildWith {
|
|
inherit inputs;
|
|
cellsFrom = ./cells;
|
|
cellBlocks = with rensa.blocks; [
|
|
(simple "test")
|
|
];
|
|
} {};
|
|
}
|