summary refs log tree commit diff
path: root/pkgs/development/tools/reftools/default.nix
blob: 2d5346f2112a4a77ae14694b286dea58ffdc6ca9 (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
{ buildGoPackage
, lib
, fetchFromGitHub
}:

buildGoPackage rec {
  pname = "reftools-unstable";
  version = "2018-09-14";
  rev = "654d0ba4f96d62286ca33cd46f7674b84f76d399";

  goPackagePath = "github.com/davidrjenni/reftools";
  excludedPackages = "\\(cmd/fillswitch/test-fixtures\\)";

  src = fetchFromGitHub {
    inherit rev;

    owner = "davidrjenni";
    repo = "reftools";
    sha256 = "12y2h1h15xadc8pa3xsj11hpdxz5dss6k7xaa4h1ifkvnasjp5w2";
  };

  meta = with lib; {
    description = "reftools - refactoring tools for Go";
    homepage = https://github.com/davidrjenni/reftools;
    license = licenses.bsd2;
    maintainers = with maintainers; [ kalbasit ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}