about summary refs log tree commit diff
path: root/pkgs/tools/text/wring/node-packages.nix
blob: b3761bd33cb690d67f8d30607f18fee97561e737 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ self, fetchurl, fetchgit ? null, lib }:

{
  by-spec."wring"."*" =
    self.by-version."wring"."1.0.0";
  by-version."wring"."1.0.0" = self.buildNodePackage {
    name = "wring-1.0.0";
    version = "1.0.0";
    bin = true;
    src = fetchurl {
      url = "http://registry.npmjs.org/wring/-/wring-1.0.0.tgz";
      name = "wring-1.0.0.tgz";
      sha1 = "3d8ebe894545bf0b42946fdc84c61e37ae657ce1";
    };
    deps = {
    };
    optionalDependencies = {
    };
    peerDependencies = [];
    os = [ ];
    cpu = [ ];
  };
  "wring" = self.by-version."wring"."1.0.0";
}