diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2019-10-12 21:34:23 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2019-10-12 21:34:23 +0200 |
commit | a235f86fa876af4c2435f54932f1d70c3547a16c (patch) | |
tree | 1047997b528f6d9b7cdc9aca384fc0d73d0ba049 /npmPackages/fs.realpath | |
parent | 2d7643789f7fc2abcb3bc9c12e5e0ad91ed90fdb (diff) | |
download | npm.nix-a235f86fa876af4c2435f54932f1d70c3547a16c.tar.gz |
Add fs.realpath
Diffstat (limited to 'npmPackages/fs.realpath')
-rw-r--r-- | npmPackages/fs.realpath/default.nix | 21 |
1 files changed, 21 insertions, 0 deletions
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 + ]; +} + |