From 01ed91cee4e56dbd5ff70a50264e472f140167bd Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Tue, 3 Sep 2024 12:55:30 +1200 Subject: [PATCH] chore(deps): Bump nixpkgs Keep using Python 3.11 for now because of an upstream issue . --- nixpkgs.nix | 5 +++-- python.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nixpkgs.nix b/nixpkgs.nix index fcc35fbe..23ba770a 100644 --- a/nixpkgs.nix +++ b/nixpkgs.nix @@ -1,6 +1,7 @@ import ( builtins.fetchTarball { - url = "https://github.com/nixos/nixpkgs/archive/2057814051972fa1453ddfb0d98badbea9b83c06.tar.gz"; - sha256 = "1a8jafyawg8mysv787q0cwghkza9kahbbniism7v2rcxas89b575"; + name = "nixos-unstable-2024-09-02"; + url = "https://github.com/nixos/nixpkgs/archive/12228ff1752d7b7624a54e9c1af4b222b3c1073b.tar.gz"; + sha256 = "1dmng7f5rv4hgd0b61chqx589ra7jajsrzw21n8gp8makw5khvb2"; } ) {} diff --git a/python.nix b/python.nix index 2c252db7..a9399339 100644 --- a/python.nix +++ b/python.nix @@ -1,2 +1,2 @@ {pkgs}: -pkgs.python3 +pkgs.python311