1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-15 17:50:53 +00:00
flake-parts/flake.nix

44 lines
1 KiB
Nix
Raw Normal View History

2021-10-27 09:05:52 +00:00
{
description = "Flake basics described using the module system";
inputs = {
nixpkgs-lib.url = "github:NixOS/nixpkgs/nixos-unstable?dir=lib";
2021-10-27 09:05:52 +00:00
};
2023-05-29 17:52:03 +00:00
outputs = { nixpkgs-lib, ... }: {
2023-05-31 14:31:11 +00:00
lib = import ./lib.nix {
inherit (nixpkgs-lib) lib;
# Extra info for version check message
revInfo =
if nixpkgs-lib?rev
then " (nixpkgs-lib.rev: ${nixpkgs-lib.rev})"
else "";
};
2022-05-11 21:05:53 +00:00
templates = {
default = {
path = ./template/default;
description = ''
2022-05-25 14:36:33 +00:00
A minimal flake using flake-parts.
2022-05-11 21:05:53 +00:00
'';
};
multi-module = {
path = ./template/multi-module;
description = ''
2022-05-25 14:36:33 +00:00
A minimal flake using flake-parts.
2022-05-11 21:05:53 +00:00
'';
};
2023-03-25 06:38:31 +00:00
unfree = {
path = ./template/unfree;
description = ''
A minimal flake using flake-parts importing nixpkgs with the unfree option.
'';
};
2021-11-21 14:28:25 +00:00
};
2022-12-01 16:40:48 +00:00
flakeModules = {
easyOverlay = ./extras/easyOverlay.nix;
flakeModules = ./extras/flakeModules.nix;
2022-12-01 16:40:48 +00:00
};
2021-10-27 09:05:52 +00:00
};
}