Merge pull request #315075 from arikgrahl/scip-go

scip-go: init at 0.1.14
This commit is contained in:
lassulus 2024-06-25 20:44:07 +02:00 committed by GitHub
commit 7ded518bde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,30 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "scip-go";
version = "0.1.14";
src = fetchFromGitHub {
owner = "sourcegraph";
repo = "scip-go";
rev = "v${version}";
hash = "sha256-yRYNct1Ok7E57iB01u33QS7ok1kjv6U/7Hm4s/eKKOo=";
};
vendorHash = "sha256-R+0E+BnE912vgqUqaaP2dlbbPyJuaCiNxRcedNKGODU=";
ldflags = [ "-s" "-w" ];
doCheck = false;
meta = with lib; {
description = "SCIP (SCIP Code Intelligence Protocol) indexer for Golang";
homepage = "https://github.com/sourcegraph/scip-go/tree/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ arikgrahl ];
mainProgram = "scip-go";
};
}