depot/third_party/nixpkgs/pkgs/tools/networking/tdns-cli/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

23 lines
646 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "tdns-cli";
version = "unstable-2021-02-19";
src = fetchFromGitHub {
owner = "rotty";
repo = pname;
rev = "9a5455fe8a52f3f14dc55ef81511b479c8cd70ea";
hash = "sha256-BGxkqlKg81izq4eOBEZFJ/MPb3UCSOo8ZTYTjtjierk=";
};
cargoHash = "sha256-uRny+l/LaQPjF5AnbxgKFLdjuAxcez1BqsL4g54KAwU=";
meta = with lib; {
description = "DNS tool that aims to replace dig and nsupdate";
homepage = "https://github.com/rotty/tdns-cli";
license = licenses.gpl3;
maintainers = with maintainers; [ astro ];
mainProgram = "tdns";
};
}