From fb2479578bf22e93f8c184dfa143a7c8a25a3b85 Mon Sep 17 00:00:00 2001 From: jecaro Date: Sat, 3 Feb 2024 21:46:52 +0100 Subject: [PATCH] Bump to nixos 23.11 --- README.md | 2 +- flake.lock | 8 ++++---- flake.nix | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 21fc94a..d77b97e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ automaton][Elementary_cellular_automaton] in Haskell. # Hacking -The project can be build with [nix][nix]. +The project can be built with [nix][nix]. Install with: diff --git a/flake.lock b/flake.lock index 0120e9d..2bd1393 100644 --- a/flake.lock +++ b/flake.lock @@ -2,16 +2,16 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1688177999, - "narHash": "sha256-JZ5nk90Ym79b4J593xYb0mI79QxU0efJLuCU3sXDalQ=", + "lastModified": 1701952659, + "narHash": "sha256-TJv2srXt6fYPUjxgLAL0cy4nuf1OZD4KuA1TrCiQqg0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "0de86059128947b2438995450f2c2ca08cc783d5", + "rev": "b4372c4924d9182034066c823df76d6eaf1f4ec4", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-23.05", + "ref": "nixos-23.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index bab0af8..1b5743a 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05"; + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; outputs = { self, nixpkgs }: let pkgs = nixpkgs.legacyPackages.x86_64-linux;