update to 23.05.2

This commit is contained in:
2024-03-11 20:21:18 +00:00
parent f3f4cdeabc
commit 1d5687bbae
8 changed files with 28 additions and 14 deletions

View File

@@ -7,7 +7,8 @@
packages ? [],
manifestPkgs ? "$(cat manifest_packages)",
workingFolder ? "$PWD/_builder",
builderVersion ? version
builderVersion ? version,
moreBuildInputs ? []
}:
pkgs.mkShell {
name = "openwrt-build-${target}-${arch}-${profile}";
@@ -38,7 +39,7 @@ pkgs.mkShell {
gnutar
curl
cacert
];
] ++ moreBuildInputs;
shellHook =
''
export WORKING_FOLDER=$(realpath ${workingFolder})