nixpkgs/pkgs/development/tools/reftools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
633 B
Nix
Raw Normal View History

2020-04-23 07:44:57 +00:00
{ buildGoModule
2018-11-02 04:16:46 +00:00
, lib
, fetchFromGitHub
}:
2020-04-23 07:44:57 +00:00
buildGoModule rec {
pname = "reftools";
version = "unstable-2021-02-13";
src = fetchFromGitHub {
owner = "davidrjenni";
repo = "reftools";
rev = "40322ffdc2e46fd7920d1f8250051bbd2f3bd34d";
sha256 = "sha256-fHWtUoVK3G0Kn69O6/D0blM6Q/u4LuLinT6sxF18nFo=";
};
2020-04-23 07:44:57 +00:00
vendorHash = null;
2018-11-02 04:16:46 +00:00
doCheck = false;
excludedPackages = "cmd/fillswitch/test-fixtures";
2018-11-02 04:16:46 +00:00
meta = with lib; {
description = "Refactoring tools for Go";
homepage = "https://github.com/davidrjenni/reftools";
2018-11-02 04:16:46 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ kalbasit ];
};
}