nixpkgs 23.11

This commit is contained in:
Robin Appelman 2024-01-06 20:49:21 +01:00
commit 26462a8bd1
3 changed files with 10 additions and 9 deletions

14
flake.lock generated
View file

@ -2,16 +2,16 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1694697629, "lastModified": 1704568152,
"narHash": "sha256-NnG0CCWNVFLEvDhGyotVpdefDS+PeUQFsb7bb8evSC4=", "narHash": "sha256-FD3mn3iUfLrjxi6OnrwWgcHzjFGteGIi9XUqj3E7xlk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d50196723e62068692f2465d99573a9f040d0a67", "rev": "ca1841d8ab8d2184ae2fc262b9ad591e2dba0b9b",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "release-23.05", "ref": "release-23.11",
"type": "indirect" "type": "indirect"
} }
}, },
@ -41,11 +41,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1694529238, "lastModified": 1701680307,
"narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "ff7b65b44d01cf9ba6a71320833626af21126384", "rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,7 +1,7 @@
{ {
inputs = { inputs = {
utils.url = "github:numtide/flake-utils"; utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/release-23.05"; nixpkgs.url = "nixpkgs/release-23.11";
}; };
outputs = { outputs = {

View file

@ -11,6 +11,7 @@
git, git,
fetchFromGitHub, fetchFromGitHub,
fetchpatch, fetchpatch,
adafruit-nrfutil,
}: let }: let
infinitime-nrf5-sdk = nrf5-sdk.overrideAttrs (old: { infinitime-nrf5-sdk = nrf5-sdk.overrideAttrs (old: {
version = "15.3.0"; version = "15.3.0";
@ -43,8 +44,8 @@ in stdenv.mkDerivation rec {
python3.pkgs.click python3.pkgs.click
python3.pkgs.cryptography python3.pkgs.cryptography
python3.pkgs.intelhex python3.pkgs.intelhex
python3.pkgs.adafruit-nrfutil
python3.pkgs.pillow python3.pkgs.pillow
adafruit-nrfutil
patch patch
git git
]; ];