zig pebble sdk boilerplate

This commit is contained in:
Fabien Freling 2026-04-13 16:58:18 +02:00
commit efa5ebc43f
6 changed files with 150 additions and 0 deletions

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
description = "Pebble";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs =
inputs@{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
formatter.${system} = pkgs.nixfmt-rfc-style;
devShell.${system} =
with pkgs;
mkShell {
nativeBuildInputs = [
just
uv
zig
nodejs
python3
];
buildInputs = [ ];
};
};
}