flake-utils/flake.nix

22 lines
578 B
Nix
Raw Normal View History

2020-04-11 17:45:25 +03:00
{
description = "Pure Nix flake utility functions";
outputs = { self }: {
lib = import ./.;
2022-05-17 10:58:38 +03:00
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;
2020-04-11 17:45:25 +03:00
};
}