mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
8df26ef3ff
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
24 lines
657 B
Nix
24 lines
657 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "go-symbols-${version}";
|
|
version = "0.1.1";
|
|
|
|
goPackagePath = "github.com/acroca/go-symbols";
|
|
goDeps = ./deps.nix;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acroca";
|
|
repo = "go-symbols";
|
|
rev = "v${version}";
|
|
sha256 = "0yyzw6clndb2r5j9isyd727njs98zzp057v314vfvknsm8g7hqrz";
|
|
};
|
|
|
|
meta = {
|
|
description = "A utility for extracting a JSON representation of the package symbols from a go source tree.";
|
|
homepage = https://github.com/acroca/go-symbols;
|
|
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
}
|