Remove useless rec

This commit is contained in:
Julian Stecklina 2022-11-22 00:45:18 +01:00
parent afcbe7140e
commit ed8509ce9d
1 changed files with 13 additions and 14 deletions

View File

@ -80,19 +80,18 @@
mkdir -p $out/bin
add-sections ${lanzaboote}/bin/lanzaboote.efi ${osrel} ${cmdline} $out/bin/lanzaboote.efi
'';
in
rec {
packages.x86_64-linux = {
inherit qemuUefi uefi-run lanzaboote lanzaboote-uki;
default = lanzaboote-uki;
};
devShells.x86_64-linux.default = pkgs.mkShell {
nativeBuildInputs = [
qemuUefi
uefi-run
rust-nightly
];
};
in {
packages.x86_64-linux = {
inherit qemuUefi uefi-run lanzaboote lanzaboote-uki;
default = lanzaboote-uki;
};
devShells.x86_64-linux.default = pkgs.mkShell {
nativeBuildInputs = [
qemuUefi
uefi-run
rust-nightly
];
};
};
}