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.

17 lines
514 B

  1. # This file has been generated by node2nix 1.9.0. Do not edit!
  2. {pkgs ? import <nixpkgs> {
  3. inherit system;
  4. }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
  5. let
  6. nodeEnv = import ./node-env.nix {
  7. inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
  8. inherit pkgs nodejs;
  9. libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
  10. };
  11. in
  12. import ./registry.nix {
  13. inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
  14. inherit nodeEnv;
  15. }