nix: use 'inputsFrom'
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bruno BELANYI 2021-10-08 15:47:26 +02:00
parent 171ef10a6d
commit 5c7c2af289

View file

@ -59,10 +59,9 @@
defaultPackage = self.packages.${system}.abacus; defaultPackage = self.packages.${system}.abacus;
devShell = pkgs.mkShell { devShell = pkgs.mkShell {
inherit (self.defaultPackage.${system}) inputsFrom = with self.packages.${system}; [
checkInputs abacus
nativeBuildInputs ];
;
inherit (self.checks.${system}.pre-commit) shellHook; inherit (self.checks.${system}.pre-commit) shellHook;
}; };