Skip to content

Commit 7a8460b

Browse files
committed
feat: remove devour-flake input
1 parent f477fdb commit 7a8460b

File tree

2 files changed

+1
-41
lines changed

2 files changed

+1
-41
lines changed

flake.lock

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

flake.nix

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,13 @@
3232
systems.url = "github:nix-systems/default";
3333
devshell = {
3434
url = "github:numtide/devshell";
35-
inputs.flake-utils.follows = "flake-utils";
3635
inputs.nixpkgs.follows = "nixpkgs";
3736
};
3837
treefmt-nix = {
3938
url = "github:numtide/treefmt-nix";
4039
inputs.nixpkgs.follows = "nixpkgs";
4140
};
4241
flake-compat.url = "github:nix-community/flake-compat";
43-
devour-flake = {
44-
url = "github:srid/devour-flake";
45-
flake = false;
46-
};
4742
lib-extras = {
4843
url = "github:aldoborrero/lib-extras/v0.2.2";
4944
inputs.devshell.follows = "devshell";
@@ -81,7 +76,6 @@
8176
config,
8277
pkgs,
8378
pkgsUnstable,
84-
pkgs2311,
8579
system,
8680
self',
8781
...
@@ -164,25 +158,8 @@
164158

165159
# checks
166160
checks =
167-
{
168-
# TODO: Restore this check whenever buildbot supports more specific checks
169-
# nix-build-all = pkgs.writeShellApplication {
170-
# name = "nix-build-all";
171-
# runtimeInputs = [
172-
# pkgs.nix
173-
# devour-flake
174-
# ];
175-
# text = ''
176-
# # Make sure that flake.lock is sync
177-
# nix flake lock --no-update-lock-file
178-
#
179-
# # Do a full nix build (all outputs)
180-
# devour-flake . "$@"
181-
# '';
182-
# };
183-
}
184161
# merge in the package derivations to force a build of all packages during a `nix flake check`
185-
// (with lib; mapAttrs' (n: nameValuePair "package-${n}") (filterAttrs (n: _: ! builtins.elem n ["docs"]) self'.packages))
162+
(with lib; mapAttrs' (n: nameValuePair "package-${n}") (filterAttrs (n: _: ! builtins.elem n ["docs"]) self'.packages))
186163
# mix in tests
187164
// config.testing.checks;
188165
};

0 commit comments

Comments
 (0)