forked from cachix/devenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
156 lines (144 loc) · 4.93 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
description = "devenv.sh - Fast, Declarative, Reproducible, and Composable Developer Environments";
nixConfig = {
extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
extra-substituters = "https://devenv.cachix.org";
};
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "flake-compat";
};
};
inputs.flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
inputs.nix = {
url = "github:domenkozar/nix/relaxed-flakes";
inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, pre-commit-hooks, nix, ... }@inputs:
let
systems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = f: builtins.listToAttrs (map (name: { inherit name; value = f name; }) systems);
mkPackage = pkgs: import ./src/devenv.nix {
inherit pkgs nix;
};
mkDevShellPackage = config: pkgs: import ./src/devenv-devShell.nix { inherit config pkgs; };
mkDocOptions = pkgs:
let
inherit (pkgs) lib;
eval = pkgs.lib.evalModules {
modules = [
./src/modules/top-level.nix
{ devenv.warnOnNewVersion = false; }
];
specialArgs = { inherit pre-commit-hooks pkgs inputs; };
};
sources = [
{ name = "${self}"; url = "https://github.com/cachix/devenv/blob/main"; }
{ name = "${pre-commit-hooks}"; url = "https://github.com/cachix/pre-commit-hooks.nix/blob/master"; }
];
rewriteSource = decl:
let
prefix = lib.strings.concatStringsSep "/" (lib.lists.take 4 (lib.strings.splitString "/" decl));
source = lib.lists.findFirst (src: src.name == prefix) { } sources;
path = lib.strings.removePrefix prefix decl;
url = "${source.url}${path}";
in
{ name = url; url = url; };
options = pkgs.nixosOptionsDoc {
options = builtins.removeAttrs eval.options [ "_module" ];
warningsAreErrors = false;
transformOptions = opt: (
opt // { declarations = map rewriteSource opt.declarations; }
);
};
in
options.optionsCommonMark;
in
{
packages = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
default = self.packages.${system}.devenv;
devenv = mkPackage pkgs;
devenv-docs-options = mkDocOptions pkgs;
});
modules = ./src/modules;
templates =
let
flake-parts = {
path = ./templates/flake-parts;
description = "A flake with flake-parts, direnv and devenv.";
welcomeText = ''
# `.devenv` should be added to `.gitignore`
```sh
echo .devenv >> .gitignore
```
'';
};
simple = {
path = ./templates/simple;
description = "A direnv supported Nix flake with devenv integration.";
welcomeText = ''
# `.devenv` should be added to `.gitignore`
```sh
echo .devenv >> .gitignore
```
'';
};
in
{
inherit simple flake-parts;
terraform = {
path = ./templates/terraform;
description = "A Terraform Nix flake with devenv integration.";
welcomeText = ''
# `.devenv` should be added to `.gitignore`
```sh
echo .devenv >> .gitignore
```
'';
};
default = simple;
};
flakeModule = import ./flake-module.nix self;
lib = {
mkConfig = args@{ pkgs, inputs, modules }:
(self.lib.mkEval args).config;
mkEval = { pkgs, inputs, modules }:
let
moduleInputs = { inherit pre-commit-hooks; } // inputs;
project = inputs.nixpkgs.lib.evalModules {
specialArgs = moduleInputs // {
inherit pkgs;
inputs = moduleInputs;
};
modules = [
(self.modules + /top-level.nix)
({ config, ... }: {
packages = [
(mkDevShellPackage config pkgs)
];
devenv.warnOnNewVersion = false;
devenv.flakesIntegration = true;
})
] ++ modules;
};
in
project;
mkShell = args:
let
config = self.lib.mkConfig args;
in
config.shell // {
ci = config.ciDerivation;
inherit config;
};
};
};
}