chore: update flake.nix to zig 0.15

This commit is contained in:
Nurul Huda (Apon) 2026-05-31 04:14:09 +06:00
parent 8378e8d13d
commit 0d4770a5dc
No known key found for this signature in database
GPG Key ID: 5D3F1DE2855A2F79
2 changed files with 5 additions and 5 deletions

6
flake.lock generated
View File

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1773840656,
"narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
"lastModified": 1780030872,
"narHash": "sha256-u6WU/yd/o8iYQrHX3RAwO1hYa3LkoSL+WNQD0rJfJZQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
"rev": "e9a7635a57597d9754eccebdfc7045e6c8600e6b",
"type": "github"
},
"original": {

View File

@ -18,10 +18,10 @@
apps = forAllSystems (pkgs: {
default = {
type = "app";
meta.description = "zx: framework for building web applications with zig";
meta.description = "Ziex: framework for building web applications with Zig";
program = toString (pkgs.writeShellApplication {
name = "zx";
runtimeInputs = [pkgs.zig_0_15];
runtimeInputs = [pkgs.zig_0_16];
text = ''
tmp="$(mktemp -d)"
trap 'rm -rf "$tmp"' EXIT