Unverified Commit 10c61f98 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233104 from r-ryantm/auto-update/checkip

checkip: 0.45.1 -> 0.46.1
parents 8823c6a4 d8f440ad
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -5,23 +5,29 @@

buildGoModule rec {
  pname = "checkip";
  version = "0.45.1";
  version = "0.46.1";

  src = fetchFromGitHub {
    owner = "jreisinger";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-GUVyeQtUNnW8yu/dhfip61jxQtgQmjBUDzsOW233laQ=";
    rev = "refs/tags/v${version}";
    hash = "sha256-U0jHwKmGHpaHSiOYDeYCXiufw0JjzAmhBnINmFsqOJo=";
  };

  vendorHash = "sha256-9/z1mtZGqrvcvq8cWBpYN7kaPHaPqtyMwMNxuRRP4Cs=";

  ldflags = [
    "-w"
    "-s"
  ];

  # Requires network
  doCheck = false;

  meta = with lib; {
    description = "CLI tool that checks an IP address using various public services";
    homepage = "https://github.com/jreisinger/checkip";
    changelog = "https://github.com/jreisinger/checkip/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };