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

33 lines
711 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-unstable";
2020-04-23 07:44:57 +00:00
version = "2019-12-21";
rev = "65925cf013156409e591f7a1be4df96f640d02f4";
vendorSha256 = null;
2018-11-02 04:16:46 +00:00
doCheck = false;
2018-11-02 04:16:46 +00:00
excludedPackages = "\\(cmd/fillswitch/test-fixtures\\)";
src = fetchFromGitHub {
inherit rev;
owner = "davidrjenni";
repo = "reftools";
2020-04-23 07:44:57 +00:00
sha256 = "18jg13skqi2v2vh2k6jvazv6ymhhybangjd23xn2asfk9g6cvnjs";
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 ];
platforms = platforms.linux ++ platforms.darwin;
};
}