lol
1{ buildGoModule
2, lib
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "reftools-unstable";
8 version = "2019-12-21";
9 rev = "65925cf013156409e591f7a1be4df96f640d02f4";
10
11 vendorSha256 = null;
12
13 doCheck = false;
14
15 excludedPackages = "cmd/fillswitch/test-fixtures";
16
17 src = fetchFromGitHub {
18 inherit rev;
19
20 owner = "davidrjenni";
21 repo = "reftools";
22 sha256 = "18jg13skqi2v2vh2k6jvazv6ymhhybangjd23xn2asfk9g6cvnjs";
23 };
24
25 meta = with lib; {
26 description = "Refactoring tools for Go";
27 homepage = "https://github.com/davidrjenni/reftools";
28 license = licenses.bsd2;
29 maintainers = with maintainers; [ kalbasit ];
30 platforms = platforms.linux ++ platforms.darwin;
31 };
32}