pebble/flake.nix

32 lines
545 B
Nix
Raw Normal View History

2026-04-13 16:58:18 +02:00
{
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 = [ ];
};
};
}