nixpkgs/pkgs/development/tools/gotags/default.nix
Colin Arnott 89361f7b99
gotags: reinit at 1.4.1
This change reverts #176044 and #178000, as well as updating the version
to the latest stable release. Unfortunately, despite the lack of updates
to gotags, it is still depended upon by vim-go, thus we must keep it
around until they (and other consumers) have removed it from the
dependency trees.

This change also adds myself as a maintainer, since I would not wish the
burden of this package's maintanence on anybody else.
2022-08-17 10:58:09 +00:00

23 lines
568 B
Nix

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "gotags";
version = "1.4.1";
src = fetchFromGitHub {
owner = "jstemmer";
repo = pname;
rev = "4c0c4330071a994fbdfdff68f412d768fbcca313";
sha256 = "sha256-cHTgt+zW6S6NDWBE6NxSXNPdn84CLD8WmqBe+uXN8sA=";
};
goPackagePath = "github.com/jstemmer/gotags";
meta = with lib; {
description = "ctags-compatible tag generator for Go";
homepage = "https://github.com/jstemmer/gotags";
license = licenses.mit;
maintainers = with maintainers; [ urandom ];
};
}