2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gopkgs";
|
|
|
|
version = "2.1.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "uudashr";
|
|
|
|
repo = "gopkgs";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-ll5fhwzzCNL0UtMLNSGOY6Yyy0EqI8OZ1iqWad4KU8k=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
vendorHash = "sha256-WVikDxf79nEahKRn4Gw7Pv8AULQXW+RXGoA3ihBhmt8=";
|
|
|
|
|
|
|
|
subPackages = [ "cmd/gopkgs" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
2020-10-19 00:13:06 +00:00
|
|
|
description = "Tool to get list available Go packages";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "gopkgs";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/uudashr/gopkgs";
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = with lib.maintainers; [ vdemeester ];
|
|
|
|
license = lib.licenses.mit;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
}
|