aboutsummaryrefslogtreecommitdiff
path: root/npmPackages/fs.realpath/default.nix
blob: c18b12f1830be7eae7d1afd65ebc3f6924a034b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
  ];
}