flake.nix: automagically use deps in shell with inputsFrom

This commit is contained in:
nikstur 2022-11-23 00:26:00 +01:00
parent cfff037390
commit 4a90c19892
1 changed files with 6 additions and 2 deletions

View File

@ -91,13 +91,17 @@
}; };
devShells.x86_64-linux.default = pkgs.mkShell { devShells.x86_64-linux.default = pkgs.mkShell {
nativeBuildInputs = [ packages = [
qemuUefi qemuUefi
uefi-run uefi-run
rust-nightly
lanzatool lanzatool
pkgs.openssl pkgs.openssl
]; ];
inputsFrom = [
lanzatool
lanzaboote
];
}; };
}; };
} }