package and add phpunit to to devenv

This commit is contained in:
Jonas Heinrich 2023-02-19 20:47:38 +01:00
parent 8595321b8e
commit d8449c60c5
4 changed files with 13 additions and 11 deletions

View file

@ -1,5 +1,7 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
# FIXME
inputs.nixpkgs.url = "github:onny/nixpkgs/phpunit";
#inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
outputs = { self, nixpkgs }:
let
@ -8,10 +10,10 @@
{
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
php82Packages.composer
phpPackages.composer
phpPackages.phpunit
nixos-shell
nodejs
# phpunit
];
};
};