evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / scip-go / package.nix
blob3f4c8de886a78dd4626ad8af7fe69202ba602f64
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "scip-go";
8   version = "0.1.21";
10   src = fetchFromGitHub {
11     owner = "sourcegraph";
12     repo = "scip-go";
13     rev = "v${version}";
14     hash = "sha256-CUmivqMFAjtSS06tEs8xuXh5nyLD3MYdI2j0EAyWpY0=";
15   };
17   vendorHash = "sha256-E/1ubWGIx+sGC+owqw4nOkrwUFJfgTeqDNpH8HCwNhA=";
19   ldflags = [ "-s" "-w" ];
21   doCheck = false;
23   meta = with lib; {
24     description = "SCIP (SCIP Code Intelligence Protocol) indexer for Golang";
25     homepage = "https://github.com/sourcegraph/scip-go/tree/v${version}";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ arikgrahl ];
28     mainProgram = "scip-go";
29   };