{ pkgs ? import { inherit system; }, system ? builtins.currentSystem }: let name = "search-and-displace-core"; phpPackage = import ./default.nix { inherit pkgs system; }; nodePackage = import ./node.nix { inherit pkgs system; }; in phpPackage.override { buildInputs = [ pkgs.graphviz ]; removeComposerArtifacts = true; # Remove composer configuration files # Add below all lines of post installation instructions e.g ''npm install'' ? postInstall = '' ll ./ ''; }