diff options
Diffstat (limited to '')
-rw-r--r-- | packages/myip.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/myip.nix b/packages/myip.nix index d40e1fd..4aaa10f 100644 --- a/packages/myip.nix +++ b/packages/myip.nix @@ -13,12 +13,12 @@ writeShellApplication { dig -6 +short @resolver1.opendns.com myip.opendns.com AAAA ''; - meta = with lib; { + meta = { description = "A dumb tool to get host's current public IP"; homepage = "https://git.azahi.cc/nixfiles"; - license = licenses.wtfpl; - platforms = platforms.unix; - maintainers = with maintainers; [ azahi ]; + license = lib.licenses.wtfpl; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.azahi ]; mainProgram = "myip"; }; } |