Merge pull request #184562 from arnottcr/gotags

This commit is contained in:
Sandro 2022-08-18 23:28:46 +02:00 committed by GitHub
commit f994d00daf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 2 deletions

View File

@ -13504,6 +13504,15 @@
githubId = 619015;
name = "Svintsov Dmitry";
};
urandom = {
email = "colin@urandom.co.uk";
github = "arnottcr";
githubId = 2526260;
keys = [{
fingerprint = "04A3 A2C6 0042 784A AEA7 D051 0447 A663 F7F3 E236";
}];
name = "Colin Arnott";
};
urbas = {
email = "matej.urbas@gmail.com";
github = "urbas";

View File

@ -103,6 +103,7 @@
, golint
, gomodifytags
, gopls
, gotags
, gotools
, iferr
, impl
@ -1045,7 +1046,7 @@ self: super: {
gomodifytags
gopls
# gorename
# gotags
gotags
gotools
# guru
iferr

View File

@ -0,0 +1,22 @@
{ 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 ];
};
}

View File

@ -535,7 +535,6 @@ mapAliases ({
google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07
google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07
gosca = throw "gosca has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-30
gotags = throw "gotags has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03
google-play-music-desktop-player = throw "GPMDP shows a black screen, upstream homepage is dead, use 'ytmdesktop' instead"; # Added 2022-06-16
go-langserver = throw "go-langserver has been replaced by gopls"; # Added 2022-06-30
go-mk = throw "go-mk has been dropped due to the lack of maintanence from upstream since 2015"; # Added 2022-06-02

View File

@ -24293,6 +24293,8 @@ with pkgs;
gofumpt = callPackage ../development/tools/gofumpt { };
gotags = callPackage ../development/tools/gotags { };
go-task = callPackage ../development/tools/go-task { };
golint = callPackage ../development/tools/golint { };