about summary refs log tree commit diff
path: root/third_party/ddclient/default.nix
blob: 28b036ea66fc22c62c1b5924edfab45a8b974daa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Users of this package & module should replace it with something like
# inadyn, after https://github.com/NixOS/nixpkgs/issues/242330 is
# landed.
#
# TODO(aspen): replace ddclient with inadyn or something else.
{ pkgs, ... }:

(pkgs.callPackage ./pkg.nix { }).overrideAttrs (old: {
  passthru = old.passthru // {
    module = ./module.nix;
  };
})