rater/shell.nix
2026-06-02 01:04:08 +02:00

18 lines
240 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
# PHP and tools
php84
php84Packages.composer
# Container tools
podman
podman-compose
# Utilities
git
curl
gnumake
];
}