Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
517 B

2 years ago
  1. { pkgs ? import <nixpkgs> {
  2. inherit system;
  3. }, system ? builtins.currentSystem
  4. }:
  5. let
  6. name = "search-and-displace-core";
  7. phpPackage = import ./default.nix {
  8. inherit pkgs system;
  9. };
  10. nodePackage = import ./node.nix {
  11. inherit pkgs system;
  12. };
  13. in
  14. phpPackage.override {
  15. buildInputs = [ pkgs.graphviz ];
  16. removeComposerArtifacts = true; # Remove composer configuration files
  17. # Add below all lines of post installation instructions e.g ''npm install'' ?
  18. postInstall = ''
  19. ll ./
  20. '';
  21. }