nixpkgs/pkgs/applications/networking/dyndns/cfdyndns/default.nix

33 lines
828 B
Nix
Raw Normal View History

2016-01-17 12:11:09 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, openssl }:
with rustPlatform;
buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "cfdyndns";
2016-01-17 12:11:09 +00:00
version = "0.0.1";
src = fetchFromGitHub {
owner = "colemickens";
repo = "cfdyndns";
rev = "v${version}";
sha256 = "1mcdjykrgh0jq6k6y664lai8sbgzk6j7k0r944f43vg63d1jql5b";
};
cargoSha256 = "1d7jpffkw2m2v37bfdqsl9sqwsl19cgglpa00lwy4ih09kzbc2n9";
2016-01-17 12:11:09 +00:00
buildInputs = [ makeWrapper openssl ];
installPhase = ''
mkdir -p $out/bin
cp -p target/release/cfdyndns $out/bin/
'';
meta = with stdenv.lib; {
description = "CloudFlare Dynamic DNS Client";
homepage = https://github.com/colemickens/cfdyndns;
license = stdenv.lib.licenses.mit;
maintainers = with maintainers; [ colemickens ];
platforms = with platforms; linux;
2016-12-29 07:57:22 +00:00
broken = true;
2016-01-17 12:11:09 +00:00
};
}