1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00
flake-parts/flake.nix

70 lines
2 KiB
Nix
Raw Permalink Normal View History

2021-10-27 09:05:52 +00:00
{
description = "Flake basics described using the module system";
inputs = {
2024-09-01 23:35:46 +00:00
nixpkgs-lib.url = "https://github.com/NixOS/nixpkgs/archive/356624c12086a18f2ea2825fed34523d60ccc4e3.tar.gz"; # 12228ff1752d7b7624a54e9c1af4b222b3c1073b /lib from nixos-unstable
2021-10-27 09:05:52 +00:00
};
2024-08-29 11:36:47 +00:00
outputs = inputs@{ nixpkgs-lib, ... }:
2024-08-29 11:34:48 +00:00
let
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
};
2024-08-29 11:34:48 +00:00
templates = {
default = {
path = ./template/default;
description = ''
A minimal flake using flake-parts.
'';
};
multi-module = {
path = ./template/multi-module;
description = ''
A minimal flake using flake-parts.
'';
};
unfree = {
path = ./template/unfree;
description = ''
A minimal flake using flake-parts importing nixpkgs with the unfree option.
'';
};
package = {
path = ./template/package;
description = ''
A flake with a simple package:
- Nixpkgs
- callPackage
- src with fileset
- a check with runCommand
'';
};
2023-03-25 06:38:31 +00:00
};
2024-08-29 11:34:48 +00:00
flakeModules = {
easyOverlay = ./extras/easyOverlay.nix;
flakeModules = ./extras/flakeModules.nix;
2024-08-29 11:37:23 +00:00
partitions = ./extras/partitions.nix;
2024-06-30 10:55:15 +00:00
};
2024-08-29 11:34:48 +00:00
in
2024-08-29 11:36:47 +00:00
lib.mkFlake { inherit inputs; } {
systems = [ ];
2024-08-29 11:44:04 +00:00
imports = [ flakeModules.partitions ];
partitionedAttrs.checks = "dev";
partitionedAttrs.devShells = "dev";
partitionedAttrs.herculesCI = "dev";
partitions.dev.extraInputsFlake = ./dev;
partitions.dev.module = {
imports = [ ./dev/flake-module.nix ];
};
2024-08-29 11:36:47 +00:00
flake = {
inherit lib templates flakeModules;
};
2021-11-21 14:28:25 +00:00
};
2021-10-27 09:05:52 +00:00
}