flake.nix: automagically use deps in shell with inputsFrom
This commit is contained in:
parent
cfff037390
commit
4a90c19892
|
@ -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
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue