about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/scip/default.nix
blob: 36fb940f19c70ed4b82246aacaa2ec6eb2fd43b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, buildGoModule
, fetchFromGitHub
, fetchpatch
, testers
, scip
}:

buildGoModule rec {
  pname = "scip";
  version = "0.3.0";

  src = fetchFromGitHub {
    owner = "sourcegraph";
    repo = "scip";
    rev = "v${version}";
    hash = "sha256-tcnBv+dxuLD/ixeOLGrHu2UVfOnrfANjyaRzW5oDC94=";
  };

  vendorHash = "sha256-+IR3fc6tvSwPGDZ4DxrE48Ii3azcT0LMmID1LRAu5g8=";

  patches = [
    # update documentation to fix broken test
    # https://github.com/sourcegraph/scip/pull/174
    (fetchpatch {
      name = "test-fix-out-of-sync-documentation.patch";
      url = "https://github.com/sourcegraph/scip/commit/7450b7701637956d4ae6669338c808234f7a7bfa.patch";
      hash = "sha256-Y5nAVHyy430xdN89ohA8XAssNdSSPq4y7QaesN48jVs=";
    })
  ];

  ldflags = [
    "-s"
    "-w"
    "-X=main.Reproducible=true"
  ];

  postInstall = ''
    mv $out/bin/{cmd,scip}
  '';

  passthru.tests = {
    version = testers.testVersion {
      package = scip;
      version = "v${version}";
    };
  };

  meta = with lib; {
    description = "SCIP Code Intelligence Protocol CLI";
    homepage = "https://github.com/sourcegraph/scip";
    changelog = "https://github.com/sourcegraph/scip/blob/${src.rev}/CHANGELOG.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ figsoda ];
  };
}