pai-sklep/shell.nix

6 lines
248 B
Nix
Raw Permalink Normal View History

2021-09-05 02:22:17 +02:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
2021-11-14 14:51:49 +01:00
nativeBuildInputs = with pkgs; [ php80Packages.php-cs-fixer php80Packages.composer php80 yarn docker-compose docker];
2021-09-05 02:22:17 +02:00
}