1
0
Fork 0
mirror of https://github.com/numtide/flake-utils.git synced 2024-12-15 17:50:53 +00:00
flake-utils/flake.nix
2022-05-17 09:58:38 +02:00

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;
};
}