biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / go-outline / default.nix
blobc8f7f4efa5020ff6f7141508ae1b711c8b407100
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "go-outline";
5   version = "unstable-2021-06-08";
7   src = fetchFromGitHub {
8     owner = "ramya-rao-a";
9     repo = "go-outline";
10     rev = "9736a4bde949f321d201e5eaa5ae2bcde011bf00";
11     sha256 = "sha256-5ns6n1UO9kRSw8iio4dmJDncsyvFeN01bjxHxQ9Fae4=";
12   };
14   vendorHash = "sha256-jYYtSXdJd2eUc80UfwRRMPcX6tFiXE3LbxV3NAdKVKE=";
16   meta = with lib; {
17     description = "Utility to extract JSON representation of declarations from a Go source file";
18     mainProgram = "go-outline";
19     homepage = "https://github.com/ramya-rao-a/go-outline";
20     maintainers = with maintainers; [ vdemeester ];
21     license = licenses.mit;
22   };