mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #315075 from arikgrahl/scip-go
scip-go: init at 0.1.14
This commit is contained in:
commit
7ded518bde
30
pkgs/by-name/sc/scip-go/package.nix
Normal file
30
pkgs/by-name/sc/scip-go/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user