2021-10-27 09:05:52 +00:00
{
description = " F l a k e b a s i c s d e s c r i b e d u s i n g t h e m o d u l e s y s t e m " ;
inputs = {
2024-11-01 23:35:51 +00:00
nixpkgs-lib . url = " h t t p s : / / g i t h u b . c o m / N i x O S / n i x p k g s / a r c h i v e / c c 2 f 2 8 0 0 0 2 9 8 e 1 2 6 9 c e a 6 6 1 2 c d 0 6 e c 9 9 7 9 d d 5 d 7 f . t a r . g z " ; # 807e9154dcb16384b1b765ebe9cd2bba2ac287fd /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 " ( n i x p k g s - l i b . r e v : ${ 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-02-16 21:50:15 +00:00
modules = ./extras/modules.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 = " d e v " ;
partitionedAttrs . devShells = " d e v " ;
partitionedAttrs . herculesCI = " d e v " ;
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
}