this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

use Zig 0.16 from nixpkgs

authored by

Jeffrey C. Ollie and committed by
Tim Culverhouse
5e39d991 c9b9cdf7

+13 -38
+6 -27
flake.lock
··· 2 2 "nodes": { 3 3 "nixpkgs": { 4 4 "locked": { 5 - "lastModified": 1776169885, 6 - "narHash": "sha256-Gk2T0tDDDAs319hp/ak+bAIUG5bPMvnNEjPV8CS86Fg=", 7 - "rev": "4bd9165a9165d7b5e33ae57f3eecbcb28fb231c9", 5 + "lastModified": 1776635459, 6 + "narHash": "sha256-S+ho7ntLexvkD2p8ca7lscbCO/VLzFjCwK9l/I2qR/8=", 7 + "rev": "8d8538e67e516362d9d09ee5d3ce73dce944612b", 8 8 "type": "tarball", 9 - "url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre980183.4bd9165a9165/nixexprs.tar.xz" 9 + "url": "https://releases.nixos.org/nixos/unstable-small/nixos-26.05pre982961.8d8538e67e51/nixexprs.tar.xz" 10 10 }, 11 11 "original": { 12 12 "type": "tarball", 13 - "url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz" 13 + "url": "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz" 14 14 } 15 15 }, 16 16 "root": { 17 17 "inputs": { 18 - "nixpkgs": "nixpkgs", 19 - "zig": "zig" 20 - } 21 - }, 22 - "zig": { 23 - "inputs": { 24 - "nixpkgs": [ 25 - "nixpkgs" 26 - ] 27 - }, 28 - "locked": { 29 - "lastModified": 1776208985, 30 - "narHash": "sha256-IOuRFpbeQ9jSk54OURX5yvjoC759ujgSNjkMKpChdDA=", 31 - "ref": "refs/heads/main", 32 - "rev": "e8ee348125247e7bd74932cc42ac92df90961d5b", 33 - "revCount": 1666, 34 - "type": "git", 35 - "url": "https://git.ocjtech.us/jeff/zig-overlay.git" 36 - }, 37 - "original": { 38 - "type": "git", 39 - "url": "https://git.ocjtech.us/jeff/zig-overlay.git" 18 + "nixpkgs": "nixpkgs" 40 19 } 41 20 } 42 21 },
+7 -11
flake.nix
··· 2 2 description = "libvaxis"; 3 3 inputs = { 4 4 nixpkgs = { 5 - url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; 6 - }; 7 - zig = { 8 - url = "git+https://git.ocjtech.us/jeff/zig-overlay.git"; 9 - inputs = { 10 - nixpkgs.follows = "nixpkgs"; 11 - }; 5 + url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; 12 6 }; 13 7 }; 14 8 outputs = 15 9 { 16 10 nixpkgs, 17 - zig, 18 11 ... 19 12 }: 20 13 let 21 - lib = nixpkgs.lib; 22 - platforms = lib.attrNames zig.packages; 14 + platforms = [ 15 + "aarch64-darwin" 16 + "aarch64-linux" 17 + "x86_64-linux" 18 + ]; 23 19 packages = 24 20 system: 25 21 import nixpkgs { ··· 35 31 pkgs.fd 36 32 pkgs.neovim 37 33 pkgs.pinact 38 - zig.packages.${pkgs.stdenv.hostPlatform.system}."0.16.0" 34 + pkgs.zig_0_16 39 35 ]; 40 36 }; 41 37 });