2022-06-18 14:33:15 +02:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, gitls
|
|
|
|
, fetchFromGitHub
|
|
|
|
, testers
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gitls";
|
2022-09-17 15:32:38 +02:00
|
|
|
version = "1.0.4";
|
2022-06-18 14:33:15 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hahwul";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-09-17 15:32:38 +02:00
|
|
|
hash = "sha256-kLkH/nNidd1QNPKvo7fxZwMhTgd4AVB8Ofw0Wo0z6c0=";
|
2022-06-18 14:33:15 +02:00
|
|
|
};
|
|
|
|
|
2023-09-21 19:11:11 +02:00
|
|
|
vendorHash = null;
|
2022-06-18 14:33:15 +02:00
|
|
|
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = gitls;
|
|
|
|
command = "gitls -version";
|
|
|
|
version = "v${version}";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Tools to enumerate git repository URL";
|
|
|
|
homepage = "https://github.com/hahwul/gitls";
|
|
|
|
changelog = "https://github.com/hahwul/gitls/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
2023-11-27 02:17:53 +01:00
|
|
|
mainProgram = "gitls";
|
2022-06-18 14:33:15 +02:00
|
|
|
};
|
|
|
|
}
|