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

buildGoPackage rec {
  name = "iferr-unstable-${version}";
  version = "2018-06-15";
  rev = "bb332a3b1d9129b6486c7ddcb7030c11b05cfc88";

  goPackagePath = "github.com/koron/iferr";

  src = fetchFromGitHub {
    inherit rev;

    owner = "koron";
    repo = "iferr";
    sha256 = "1nyqy1sgq2afiama4wy7wap8s03c0hiwwa0f6kwq3y59097rfc0c";
  };

  meta = with lib; {
    description = ''Generate "if err != nil {" block'';
    homepage = https://github.com/koron/iferr;
    license = licenses.mit;
    maintainers = with maintainers; [ kalbasit ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}