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

# TODO(yl): should we package https://github.com/remyoudompheng/go-misc instead of
# the standalone extract of deadcode from it?
buildGoPackage rec {
  pname = "deadcode-unstable";
  version = "2016-07-24";
  rev = "210d2dc333e90c7e3eedf4f2242507a8e83ed4ab";

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

  src = fetchFromGitHub {
    inherit rev;

    owner = "tsenart";
    repo = "deadcode";
    sha256 = "05kif593f4wygnrq2fdjhn7kkcpdmgjnykcila85d0gqlb1f36g0";
  };

  meta = with lib; {
    description = "deadcode is a very simple utility which detects unused declarations in a Go package.";
    homepage = https://github.com/remyoudompheng/go-misc/tree/master/deadcode;
    license = licenses.bsd3;
    maintainers = with maintainers; [ kalbasit ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}