Compare commits

..

No commits in common. "36bc2d59c35e3a494d6fed279ec3ea6fb0b027ea" and "8986c51d4deb091eaf00bde1d1f824884256468f" have entirely different histories.

2 changed files with 20 additions and 20 deletions

30
flake.lock generated
View file

@ -6,16 +6,17 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1758247379, "lastModified": 1746690306,
"narHash": "sha256-u7LOGpRhY1MmelsdLF5BlZRtuwYD5GBfQzVOdNojhz8=", "narHash": "sha256-bMp4BCrTOX7VDLVU8TzMSQj1hviBrARz9iiqNq6Vbnk=",
"owner": "mirrexagon", "owner": "mirrexagon",
"repo": "nixpkgs-esp-dev", "repo": "nixpkgs-esp-dev",
"rev": "f087ab9ecf5177d5bcf773b0c7467fa91b33dae7", "rev": "6c34f2436015eb6c107970d9b88f3d5d4600c6fa",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "mirrexagon", "owner": "mirrexagon",
"repo": "nixpkgs-esp-dev", "repo": "nixpkgs-esp-dev",
"rev": "6c34f2436015eb6c107970d9b88f3d5d4600c6fa",
"type": "github" "type": "github"
} }
}, },
@ -39,18 +40,17 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1759735786, "lastModified": 1729501122,
"narHash": "sha256-a0+h02lyP2KwSNrZz4wLJTu9ikujNsTWIC874Bv7IJ0=", "narHash": "sha256-tScdcYQ37kMqlyqb5yizNDTKXZASLB4zHitlHwOg+/o=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "20c4598c84a671783f741e02bf05cbfaf4907cff", "rev": "56c7c4a3f5fdbef5bf81c7d9c28fbb45dc626611",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "id": "nixpkgs",
"ref": "nixos-25.05", "ref": "nixpkgs-unstable",
"repo": "nixpkgs", "type": "indirect"
"type": "github"
} }
}, },
"nixpkgs_2": { "nixpkgs_2": {
@ -92,16 +92,16 @@
}, },
"systems_2": { "systems_2": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1689347949,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=",
"owner": "nix-systems", "owner": "nix-systems",
"repo": "default", "repo": "default-linux",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-systems", "owner": "nix-systems",
"repo": "default", "repo": "default-linux",
"type": "github" "type": "github"
} }
} }

View file

@ -1,8 +1,8 @@
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs"; nixpkgs.url = "github:NixOS/nixpkgs";
systems.url = "github:nix-systems/default"; systems.url = "github:nix-systems/default-linux";
esp-idf.url = "github:mirrexagon/nixpkgs-esp-dev"; esp-idf.url = "github:mirrexagon/nixpkgs-esp-dev?rev=6c34f2436015eb6c107970d9b88f3d5d4600c6fa";
}; };
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-full; inherit (esp-idf.packages.${system}) esp-idf-esp32;
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-full esp-idf-esp32
]; ];
packages = [ packages = [
esp-idf-full esp-idf-esp32
# 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]))