Merge pull request #5 from blitz/magic-mk-shell

flake.nix: automagically use deps in shell with inputsFrom
This commit is contained in:
Julian Stecklina 2022-11-23 15:41:04 +01:00 committed by GitHub
commit 10e516c148
1 changed files with 6 additions and 2 deletions

View File

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