From a235f86fa876af4c2435f54932f1d70c3547a16c Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Sat, 12 Oct 2019 21:34:23 +0200 Subject: Add fs.realpath --- npmPackages/fs.realpath/default.nix | 21 +++++++++++++++++++++ npmPackages/index.nix | 1 + 2 files changed, 22 insertions(+) create mode 100644 npmPackages/fs.realpath/default.nix diff --git a/npmPackages/fs.realpath/default.nix b/npmPackages/fs.realpath/default.nix new file mode 100644 index 0000000..c18b12f --- /dev/null +++ b/npmPackages/fs.realpath/default.nix @@ -0,0 +1,21 @@ +{ fetchurl, buildNpmPackage, tap }: + +buildNpmPackage { + pname = "fs.realpath"; + version = "1.0.0"; + src = fetchurl { + url = "https://github.com/isaacs/fs.realpath/archive/v1.0.0.tar.gz"; + sha256 = "16ybsq9mxm1cwwpx2j3k2pffznsqil13ifkwf6q8q2dpavmsy5k2"; + }; + + meta = { + description = "Use node's fs.realpath, but fall back to the JS implementation if the native one fails"; + homepage = ""; + license = "ISC"; + }; + + npmInputs = [ + tap + ]; +} + diff --git a/npmPackages/index.nix b/npmPackages/index.nix index b56647b..fbb6b8f 100644 --- a/npmPackages/index.nix +++ b/npmPackages/index.nix @@ -16,6 +16,7 @@ in { escape-string-regexp = callPackage ./escape-string-regexp {}; fibers = callPackage ./fibers {}; file-uri-to-path = callPackage ./file-uri-to-path {}; + fs-realpath = callPackage ./fs.realpath {}; has-flag = callPackage ./has-flag {}; inflight = callPackage ./inflight {}; inherits = callPackage ./inherits {}; -- cgit v1.2.3