aboutsummaryrefslogtreecommitdiff
path: root/npmPackages/concat-map/default.nix
blob: 2484b4a753a4ced56bd104de0129a15b69611781 (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
25
26
27
{ fetchurl, buildNpmPackage, tape }:

buildNpmPackage {
  pname = "concat-map";
  version = "0.0.1";
  src = fetchurl {
    url = "https://github.com/substack/node-concat-map/archive/0.0.1.tar.gz";
    sha256 = "0vr53dsjbdr5x9ywcrgjxj08dp5z3c4hkhv9rsppmd66ibpq0rlk";
  };

  meta = {
    description = "concatenative mapdashery";
    homepage = "";
    license = "MIT";
  };

  npmInputs = [
    tape
  ];

  jailbreak = true;

  files = [
    "index.js"
  ];
}