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
22
pkgs/tools/admin/damon/default.nix
Normal file
22
pkgs/tools/admin/damon/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "damon";
|
||||
version = "unstable-2021-10-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hashicorp";
|
||||
repo = "damon";
|
||||
rev = "542c79aecc44b1d0500f9cb9b2e13f07db1e2f35";
|
||||
sha256 = "sha256-vg5PISNqk8N2nn7eABm+/7qzePDbKPkvovdZk2sZYsg=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/hashicorp/damon";
|
||||
license = licenses.mpl20;
|
||||
description = "A terminal UI (TUI) for HashiCorp Nomad";
|
||||
maintainers = teams.iog.members;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue