uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
23
pkgs/tools/networking/tdns-cli/default.nix
Normal file
23
pkgs/tools/networking/tdns-cli/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "tdns-cli";
|
||||
version = "0.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rotty";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0nn036in5j1h0vxkwif0lf7fn900zy4f4kxlzy6qdx3jakgmxvwh";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-O4n38dla2WgZ4949Ata6AYbZF9LMnXDyuFNoXRrTN7I=";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue