update nix to 23.05 (#250)

* update nix to 23.05

* nix: do not install gdb on macos
This commit is contained in:
Mitchell Hashimoto
2023-08-08 09:01:47 -07:00
committed by GitHub
parent 8f69a9c55d
commit c2137360f4
3 changed files with 9 additions and 9 deletions

14
flake.lock generated
View File

@ -64,27 +64,27 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1670114716, "lastModified": 1691486536,
"narHash": "sha256-Nu55yMyh77xOz4EMrgkS70awxL/Guh6SzG1XLAUHJLc=", "narHash": "sha256-W2jYTn6rNiJEpjXkOiZxNltgxxwgeZE5cQ967NgsrHU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "4a8306947aa965121c7c38221d6f73e438a5d55e", "rev": "8fa39adf946a4470610b38fd7aff0a73ad4356c3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "release-22.11", "ref": "release-23.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1670086663, "lastModified": 1688221086,
"narHash": "sha256-hT8C8AQB74tdoCPwz4nlJypLMD7GI2F5q+vn+VE/qQk=", "narHash": "sha256-cdW6qUL71cNWhHCpMPOJjlw0wzSRP0pVlRn2vqX/VVg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "813836d64fa57285d108f0dbf2356457ccd304e3", "rev": "cd99c2b3c9f160cd004318e0697f90bbd5960825",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -2,7 +2,7 @@
description = "ghostty"; description = "ghostty";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-22.11"; nixpkgs.url = "github:nixos/nixpkgs/release-23.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
zig.url = "github:mitchellh/zig-overlay"; zig.url = "github:mitchellh/zig-overlay";

View File

@ -76,7 +76,6 @@ in mkShell rec {
nodejs nodejs
# Testing # Testing
gdb
parallel parallel
python3 python3
tracy tracy
@ -90,6 +89,7 @@ in mkShell rec {
debugedit debugedit
flatpak-builder flatpak-builder
gdb
valgrind valgrind
wraptest wraptest
]; ];