mirror of
https://github.com/numtide/flake-utils.git
synced 2024-12-15 17:50:53 +00:00
21 lines
578 B
Nix
21 lines
578 B
Nix
{
|
|
description = "Pure Nix flake utility functions";
|
|
outputs = { self }: {
|
|
lib = import ./.;
|
|
templates = {
|
|
simple-flake = {
|
|
path = ./examples/simple-flake;
|
|
description = "A flake using flake-utils.lib.simpleFlake";
|
|
};
|
|
each-system = {
|
|
path = ./examples/each-system;
|
|
description = "A flake using flake-utils.lib.eachDefaultSystem";
|
|
};
|
|
check-utils = {
|
|
path = ./examples/check-utils;
|
|
description = "A flake with tests";
|
|
};
|
|
};
|
|
defaultTemplate = self.templates.each-system;
|
|
};
|
|
}
|