mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
816 B
Nix
33 lines
816 B
Nix
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
pname = "cfdyndns";
|
|
version = "0.0.3";
|
|
src = fetchFromGitHub {
|
|
owner = "colemickens";
|
|
repo = "cfdyndns";
|
|
rev = "v${version}";
|
|
sha256 = "1fba0w2979dmc2wyggqx4fj52rrl1s2vpjk6mkj1811a848l1hdi";
|
|
};
|
|
|
|
cargoSha256 = "04ryin24z3pfxjxy4smngy66xs7k85g6gdzsl77cij8ifb29im99";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -p $releaseDir/cfdyndns $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "CloudFlare Dynamic DNS Client";
|
|
homepage = "https://github.com/colemickens/cfdyndns";
|
|
license = lib.licenses.mit;
|
|
maintainers = with maintainers; [ colemickens ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|