treewde: simplify subproject directory names
This commit only moves the directories instead of chaning any names inside files.
This commit is contained in:
parent
76d9cb9bf9
commit
2fce3c0802
|
@ -77,7 +77,7 @@
|
||||||
|
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
|
|
||||||
rust-nightly = pkgs.rust-bin.fromRustupToolchainFile ./rust/lanzaboote/rust-toolchain.toml;
|
rust-nightly = pkgs.rust-bin.fromRustupToolchainFile ./rust/stub/rust-toolchain.toml;
|
||||||
craneLib = crane.lib.x86_64-linux.overrideToolchain rust-nightly;
|
craneLib = crane.lib.x86_64-linux.overrideToolchain rust-nightly;
|
||||||
|
|
||||||
# Build attributes for a Rust application.
|
# Build attributes for a Rust application.
|
||||||
|
@ -108,7 +108,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
lanzabooteCrane = buildRustApp {
|
lanzabooteCrane = buildRustApp {
|
||||||
src = craneLib.cleanCargoSource ./rust/lanzaboote;
|
src = craneLib.cleanCargoSource ./rust/stub;
|
||||||
target = "x86_64-unknown-uefi";
|
target = "x86_64-unknown-uefi";
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
};
|
};
|
||||||
|
@ -116,7 +116,7 @@
|
||||||
lanzaboote = lanzabooteCrane.package;
|
lanzaboote = lanzabooteCrane.package;
|
||||||
|
|
||||||
lanzatoolCrane = buildRustApp {
|
lanzatoolCrane = buildRustApp {
|
||||||
src = ./rust/lanzatool;
|
src = ./rust/tool;
|
||||||
extraArgs = {
|
extraArgs = {
|
||||||
TEST_SYSTEMD = pkgs.systemd;
|
TEST_SYSTEMD = pkgs.systemd;
|
||||||
checkInputs = with pkgs; [
|
checkInputs = with pkgs; [
|
||||||
|
|
Loading…
Reference in New Issue