85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
23 lines
581 B
Nix
23 lines
581 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
name = "tdns-cli";
|
|
version = "0.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rotty";
|
|
repo = name;
|
|
rev = "v${version}";
|
|
sha256 = "0nn036in5j1h0vxkwif0lf7fn900zy4f4kxlzy6qdx3jakgmxvwh";
|
|
};
|
|
|
|
cargoSha256 = "14mmfj5my8gbsdhlhz17w8wjcc085c6dkj78kwr2hhsbcxp1vjgg";
|
|
|
|
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 ];
|
|
};
|
|
}
|