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/development/tools/go-outline/default.nix
Normal file
22
pkgs/development/tools/go-outline/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go-outline";
|
||||
version = "unstable-2021-06-08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ramya-rao-a";
|
||||
repo = "go-outline";
|
||||
rev = "9736a4bde949f321d201e5eaa5ae2bcde011bf00";
|
||||
sha256 = "sha256-5ns6n1UO9kRSw8iio4dmJDncsyvFeN01bjxHxQ9Fae4=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-jYYtSXdJd2eUc80UfwRRMPcX6tFiXE3LbxV3NAdKVKE=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Utility to extract JSON representation of declarations from a Go source file";
|
||||
homepage = "https://github.com/ramya-rao-a/go-outline";
|
||||
maintainers = with maintainers; [ SuperSandro2000 vdemeester ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue