mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
12 lines
268 B
Nix
12 lines
268 B
Nix
{ stdenv, nodePackages }:
|
|
|
|
# to update dnschain, run npm2nix package.json package.nix, and
|
|
# then add "coffee-script" manually as a dependecy for "dnschain"
|
|
# in package.nix.
|
|
|
|
let
|
|
np = nodePackages.override { generated = ./package.nix; self = np; };
|
|
in
|
|
|
|
np.dnschain
|