nixpkgs/pkgs/tools/networking/statsd/default.nix
Eelco Dolstra cae5bfb991 statsd: Don't use <nixpkgs>
This was preventing the Nixpkgs channel from updating, since the
program indexer barfed on:

  error: anonymous function at /nix/store/wdnwbh3kmf68nhqqp0khcyxbdbp43vg5-nixos-14.12.626.b0d594c/nixos/nixpkgs/pkgs/top-level/node-packages.nix:1:1 called without required argument ‘neededNatives’, at /data/releases/nixos/unstable-small/.tmp-nixos-16.03pre72946.c50d013-787/unpack/nixos-16.03pre72946.c50d013/lib/customisation.nix:56:12

because Nixpkgs 16.03 was importing files from Nixpkgs 14.12.

Also added some half-assed checks to detect this issue in the future.
2015-12-02 15:58:30 +01:00

14 lines
333 B
Nix

{ recurseIntoAttrs, callPackage, nodejs
}:
let
self = recurseIntoAttrs (
callPackage ../../../top-level/node-packages.nix {
inherit nodejs self;
generated = callPackage ./node-packages.nix { inherit self; };
overrides = {
"statsd" = { passthru.nodePackages = self; };
};
});
in self.statsd