nodePackages.escape-string-regexp: init at 4.0.0

wip/yesman
Joe Hermaszewski 4 years ago committed by Dmitry Kalinkin
parent d5a5009e1f
commit 74ff4f65ca
No known key found for this signature in database
GPG Key ID: 06AF1D3C38F04E0E
  1. 1
      pkgs/development/node-packages/node-packages.json
  2. 18
      pkgs/development/node-packages/node-packages.nix

@ -66,6 +66,7 @@
, "elm-oracle"
, "emoj"
, "emojione"
, "escape-string-regexp"
, "eslint"
, "eslint_d"
, {"fast-cli": "1.x"}

@ -59165,6 +59165,24 @@ in
bypassCache = true;
reconstructLock = true;
};
escape-string-regexp = nodeEnv.buildNodePackage {
name = "escape-string-regexp";
packageName = "escape-string-regexp";
version = "4.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz";
sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==";
};
buildInputs = globalBuildInputs;
meta = {
description = "Escape RegExp special characters";
homepage = "https://github.com/sindresorhus/escape-string-regexp#readme";
license = "MIT";
};
production = true;
bypassCache = true;
reconstructLock = true;
};
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";

Loading…
Cancel
Save