cfdyndns: 0.0.4 -> 0.2.0

This commit is contained in:
Timothy DeHerrera 2023-09-06 16:52:10 -06:00 committed by Yt
parent 56c409f4a9
commit 517501bcf1
2 changed files with 2052 additions and 6 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2,24 +2,26 @@
rustPlatform.buildRustPackage rec {
pname = "cfdyndns";
version = "0.0.4";
version = "0.2.0";
src = fetchFromGitHub {
owner = "colemickens";
owner = "nrdxp";
repo = "cfdyndns";
rev = "v${version}";
hash = "sha256-kgpTKhMvxuy+Q9M5U/PKJt7pZ2kSQxkCNjNu8aIyutg=";
hash = "sha256-iwKMTWLK7pgz8AEmPVBO1bTWrXTokQJ+Z1U4CiiRdho=";
};
cargoHash = "sha256-78TQkRHEbSaCyCM48hH1h8GG0BGJmC2zc7gTZc2t9Nc=";
cargoLock.lockFile = ./Cargo.lock;
cargoLock.outputHashes."cloudflare-0.10.1" = "sha256-AJW4AQ34EDhxf7zMhFY2rqq5n4IaSVWJAYi+7jXEUVo=";
cargoLock.outputHashes."public-ip-0.2.2" = "sha256-DDdh90EAo3Ppsym4AntczFuiAQo4/QQ9TEPJjMB1XzY=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
meta = with lib; {
description = "CloudFlare Dynamic DNS Client";
homepage = "https://github.com/colemickens/cfdyndns";
homepage = "https://github.com/nrdxp/cfdyndns";
license = lib.licenses.mit;
maintainers = with maintainers; [ colemickens ];
maintainers = with maintainers; [ colemickens nrdxp ];
platforms = with platforms; linux;
};
}