ctucx.git: dns.nix

fork of https://github.com/kirelagin/dns.nix

commit 055224208f88eed79c0cb1fc6749bd3d86341d56
parent bb554091237f959c4e34db958c355d24653bb6b8
Author: Kirill Elagin <kirelagin@gmail.com>
Date: Wed, 31 Mar 2021 19:40:18 -0400

Merge pull request #12 from davidtwco/ptr-lib-arg

Take `lib` as argument in PTR type
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dns/types/records/PTR.nix b/dns/types/records/PTR.nix
@@ -4,10 +4,10 @@
 # SPDX-License-Identifier: MIT
 #
 
-{ pkgs }:
+{ lib }:
 
 let
-  inherit (pkgs.lib) mkOption types;
+  inherit (lib) mkOption types;
 
 in