zephyrPackages.sdk: fix typo
This commit is contained in:
parent
5812980337
commit
6c29e57677
|
@ -1,4 +1,4 @@
|
||||||
{ lib, symlinkJoin, fetchurl, zephyr, source, version, hosts, toolchains ? [ ]
|
{ lib, symlinkJoin, fetchurl, zephyrPackages, source, version, hosts, toolchains ? [ ]
|
||||||
}:
|
}:
|
||||||
let src = fetchurl source;
|
let src = fetchurl source;
|
||||||
in symlinkJoin rec {
|
in symlinkJoin rec {
|
||||||
|
@ -6,7 +6,7 @@ in symlinkJoin rec {
|
||||||
inherit version;
|
inherit version;
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
paths = [ zephyr.host-tools ] ++ toolchains;
|
paths = [ zephyrPackages.host-tools ] ++ toolchains;
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
tar -C "$out" -xf "${src}" --exclude setup.sh --exclude sdk_toolchains --strip-components=1
|
tar -C "$out" -xf "${src}" --exclude setup.sh --exclude sdk_toolchains --strip-components=1
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue