31 lines
545 B
Nix
31 lines
545 B
Nix
{
|
|
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 = [ ];
|
|
};
|
|
};
|
|
}
|