Skip to content

Commit

Permalink
Use nixos-unstable
Browse files Browse the repository at this point in the history
The main reason we used to pin a release was to get Python 3.8.
Now we get Python 3.8 from cachix/nixpkgs-python instead.
  • Loading branch information
adisbladis committed Aug 9, 2024
1 parent 74fdff3 commit 36d76b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Build Zephyr projects on Nix";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";

pyproject-nix.url = "github:nix-community/pyproject.nix";
pyproject-nix.inputs.nixpkgs.follows = "nixpkgs";
Expand Down Expand Up @@ -40,7 +40,7 @@
pkgs = nixpkgs.legacyPackages.${system};

callPackage = lib.callPackageWith (pkgs // {
python38 = nixpkgs-python.packages.${system}."3.8.19";
python38 = nixpkgs-python.packages.${system}."3.8";
});

in
Expand Down

0 comments on commit 36d76b6

Please sign in to comment.