depot/third_party/nixpkgs/pkgs/development/tools/go-outline/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

22 lines
667 B
Nix

{ 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; [ vdemeester ];
license = licenses.mit;
};
}