2019-11-12 23:39:31 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "tdns-cli";
|
|
|
|
version = "0.0.5";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rotty";
|
|
|
|
repo = name;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0nn036in5j1h0vxkwif0lf7fn900zy4f4kxlzy6qdx3jakgmxvwh";
|
|
|
|
};
|
|
|
|
|
2020-02-14 02:00:26 +00:00
|
|
|
# Delete this on next update; see #79975 for details
|
|
|
|
legacyCargoFetcher = true;
|
|
|
|
|
2019-11-12 23:39:31 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|