Merge pull request #73313 from astro/tdns-cli

tdns-cli: init at 0.0.5
This commit is contained in:
Alexey Shmalko 2019-11-13 21:59:19 +02:00 committed by GitHub
commit f0f1e12a1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "tdns-cli";
version = "0.0.5";
src = fetchFromGitHub {
owner = "rotty";
repo = name;
rev = "v${version}";
sha256 = "0nn036in5j1h0vxkwif0lf7fn900zy4f4kxlzy6qdx3jakgmxvwh";
};
cargoSha256 = "0h41ws3jcxb90mhnznckfkfv0mpx6ykga7087bipbaw2fqhr7izd";
meta = with stdenv.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 ];
};
}

View file

@ -6584,6 +6584,8 @@ in
tcpreplay = callPackage ../tools/networking/tcpreplay { };
tdns-cli = callPackage ../tools/networking/tdns-cli { };
ted = callPackage ../tools/typesetting/ted { };
teamviewer = libsForQt5.callPackage ../applications/networking/remote/teamviewer { };