wrapper-manager-fds: update flake

This commit is contained in:
Gabriel Arazas 2024-07-31 13:28:35 +08:00
parent 00beef2434
commit 325b2d9e42

View File

@ -32,13 +32,14 @@
in import ./. { } // (eachSystem systems (system: let in import ./. { } // (eachSystem systems (system: let
pkgs = import sources.nixos-unstable { inherit system; }; pkgs = import sources.nixos-unstable { inherit system; };
tests = import ./tests { inherit pkgs; }; tests = import ./tests { inherit pkgs; };
docs = import ./docs { inherit pkgs; };
in { in {
devShells = { devShells = {
default = import ./shell.nix { inherit pkgs; }; default = import ./shell.nix { inherit pkgs; };
website = import ./docs/shell.nix { inherit pkgs; }; website = import ./docs/shell.nix { inherit pkgs; };
}; };
packages.website = import ./docs { inherit pkgs; }; packages.website = docs.website;
checks.wrapperManagerLibrarySetPkg = tests.libTestPkg; checks.wrapperManagerLibrarySetPkg = tests.libTestPkg;
})); }));