aboutsummaryrefslogtreecommitdiff
path: root/npmPackages/minimatch/default.nix
blob: 52228b23f1c4e77defe0f4479f76bc223e4e5d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ fetchurl, buildNpmPackage, brace-expansion, tap }:

buildNpmPackage {
  pname = "minimatch";
  version = "3.0.4";
  src = fetchurl {
    url = "https://github.com/isaacs/minimatch/archive/v3.0.4.tar.gz";
    sha256 = "0wla3cbrnm55nx5x1fgaax8a89pyz5hrb29f4fbw1a11v12mjasd";
  };

  meta = {
    description = "a glob matcher in javascript";
    homepage = "";
    license = "ISC";
  };

  npmInputs = [
    brace-expansion tap
  ];

  jailbreak = true;

}