Skip to content

Commit 20d7bcb

Browse files
authored
remove checkmate self reference (#6)
1 parent 45722f1 commit 20d7bcb

File tree

5 files changed

+111
-231
lines changed

5 files changed

+111
-231
lines changed

flake.lock

Lines changed: 0 additions & 186 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,6 @@
55
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
66

77
inputs = {
8-
checkmate = {
9-
inputs = {
10-
den.follows = "den";
11-
flake-aspects.follows = "flake-aspects";
12-
flake-file.follows = "flake-file";
13-
flake-parts.follows = "flake-parts";
14-
import-tree.follows = "import-tree";
15-
nix-unit.follows = "nix-unit";
16-
nixpkgs.follows = "nixpkgs";
17-
nixpkgs-lib.follows = "nixpkgs";
18-
systems.follows = "systems";
19-
target.follows = "target";
20-
treefmt-nix.follows = "treefmt-nix";
21-
};
22-
url = "github:vic/checkmate";
23-
};
248
den.url = "github:vic/den";
259
flake-aspects.url = "github:vic/flake-aspects";
2610
flake-file.url = "github:vic/flake-file";

modules/checkmate/checkmate.nix

Lines changed: 0 additions & 19 deletions
This file was deleted.

modules/flakeModule.nix

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,27 @@
22
flake.flakeModule =
33
{ inputs, lib, ... }:
44
{
5+
56
imports = [
67
(inputs.flake-file.flakeModules.dendritic or { })
78
(inputs.import-tree ./checkmate)
89
];
9-
flake-file.inputs.checkmate.url = lib.mkDefault "github:vic/checkmate";
10+
11+
flake-file.inputs.checkmate = {
12+
url = lib.mkDefault "github:vic/checkmate";
13+
inputs = {
14+
den.follows = "den";
15+
flake-aspects.follows = "flake-aspects";
16+
flake-file.follows = "flake-file";
17+
flake-parts.follows = "flake-parts";
18+
import-tree.follows = "import-tree";
19+
nix-unit.follows = "nix-unit";
20+
nixpkgs.follows = "nixpkgs";
21+
nixpkgs-lib.follows = "nixpkgs";
22+
systems.follows = "systems";
23+
target.follows = "target";
24+
treefmt-nix.follows = "treefmt-nix";
25+
};
26+
};
1027
};
1128
}

0 commit comments

Comments
 (0)