update esp-idf toolchain
This commit is contained in:
parent
8986c51d4d
commit
bfc0a3470c
2 changed files with 14 additions and 14 deletions
20
flake.lock
generated
20
flake.lock
generated
|
|
@ -6,17 +6,16 @@
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1746690306,
|
"lastModified": 1758247379,
|
||||||
"narHash": "sha256-bMp4BCrTOX7VDLVU8TzMSQj1hviBrARz9iiqNq6Vbnk=",
|
"narHash": "sha256-u7LOGpRhY1MmelsdLF5BlZRtuwYD5GBfQzVOdNojhz8=",
|
||||||
"owner": "mirrexagon",
|
"owner": "mirrexagon",
|
||||||
"repo": "nixpkgs-esp-dev",
|
"repo": "nixpkgs-esp-dev",
|
||||||
"rev": "6c34f2436015eb6c107970d9b88f3d5d4600c6fa",
|
"rev": "f087ab9ecf5177d5bcf773b0c7467fa91b33dae7",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "mirrexagon",
|
"owner": "mirrexagon",
|
||||||
"repo": "nixpkgs-esp-dev",
|
"repo": "nixpkgs-esp-dev",
|
||||||
"rev": "6c34f2436015eb6c107970d9b88f3d5d4600c6fa",
|
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -40,17 +39,18 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1729501122,
|
"lastModified": 1759735786,
|
||||||
"narHash": "sha256-tScdcYQ37kMqlyqb5yizNDTKXZASLB4zHitlHwOg+/o=",
|
"narHash": "sha256-a0+h02lyP2KwSNrZz4wLJTu9ikujNsTWIC874Bv7IJ0=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "56c7c4a3f5fdbef5bf81c7d9c28fbb45dc626611",
|
"rev": "20c4598c84a671783f741e02bf05cbfaf4907cff",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"id": "nixpkgs",
|
"owner": "NixOS",
|
||||||
"ref": "nixpkgs-unstable",
|
"ref": "nixos-25.05",
|
||||||
"type": "indirect"
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs";
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
||||||
systems.url = "github:nix-systems/default-linux";
|
systems.url = "github:nix-systems/default-linux";
|
||||||
esp-idf.url = "github:mirrexagon/nixpkgs-esp-dev?rev=6c34f2436015eb6c107970d9b88f3d5d4600c6fa";
|
esp-idf.url = "github:mirrexagon/nixpkgs-esp-dev";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { nixpkgs, systems, esp-idf, ... }: let
|
outputs = { nixpkgs, systems, esp-idf, ... }: let
|
||||||
|
|
@ -14,17 +14,17 @@
|
||||||
});
|
});
|
||||||
in {
|
in {
|
||||||
devShells = eachSystem(system: let
|
devShells = eachSystem(system: let
|
||||||
inherit (esp-idf.packages.${system}) esp-idf-esp32;
|
inherit (esp-idf.packages.${system}) esp-idf-full;
|
||||||
pkgs = pkgsFor.${system};
|
pkgs = pkgsFor.${system};
|
||||||
in {
|
in {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
inputsFrom = [
|
inputsFrom = [
|
||||||
# for building and flashing the sketch
|
# for building and flashing the sketch
|
||||||
esp-idf-esp32
|
esp-idf-full
|
||||||
];
|
];
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
esp-idf-esp32
|
esp-idf-full
|
||||||
|
|
||||||
# for the `fontconvert.py` script of epdiy
|
# for the `fontconvert.py` script of epdiy
|
||||||
(pkgs.python3.withPackages(ps: [ps.freetype-py]))
|
(pkgs.python3.withPackages(ps: [ps.freetype-py]))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue