Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "ESP8266/ESP32 development tools";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
flake-utils.url = "github:numtide/flake-utils";
};

Expand All @@ -21,6 +21,9 @@
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
config.permittedInsecurePackages = [
"python3.13-ecdsa-0.19.1"
];
};
in
{
Expand Down
4 changes: 2 additions & 2 deletions pkgs/esp-idf/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
, python310
, python311
, python312
, libxml2
, libxml2_13
}:

let
Expand All @@ -41,7 +41,7 @@ let
python310
python311
python312
libxml2
libxml2_13
];

toolSpecToDerivation = toolSpec:
Expand Down