this repo has no description
13
fork

Configure Feed

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

at main 39 lines 792 B view raw
1{ 2 description = "libvaxis"; 3 inputs = { 4 nixpkgs = { 5 url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; 6 }; 7 }; 8 outputs = 9 { 10 nixpkgs, 11 ... 12 }: 13 let 14 platforms = [ 15 "aarch64-darwin" 16 "aarch64-linux" 17 "x86_64-linux" 18 ]; 19 packages = 20 system: 21 import nixpkgs { 22 inherit system; 23 }; 24 forAllSystems = (function: nixpkgs.lib.genAttrs platforms (system: function (packages system))); 25 in 26 { 27 devShells = forAllSystems (pkgs: { 28 default = pkgs.mkShell { 29 name = "libvaxis"; 30 nativeBuildInputs = [ 31 pkgs.fd 32 pkgs.neovim 33 pkgs.pinact 34 pkgs.zig_0_16 35 ]; 36 }; 37 }); 38 }; 39}