2023-01-11 07:51:40 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "git-bug";
|
2023-01-11 07:51:40 +00:00
|
|
|
version = "0.8.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MichaelMure";
|
|
|
|
repo = "git-bug";
|
2023-01-11 07:51:40 +00:00
|
|
|
rev = "v${version}";
|
2022-12-17 10:02:37 +00:00
|
|
|
sha256 = "12byf6nsamwz0ssigan1z299s01cyh8bhgj86bibl90agd4zs9n8";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
vendorSha256 = "sha256-32kNDoBE50Jx1Ef9YwhDk7nd3CaTSnHPlu7PgWPUGfE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
excludedPackages = [ "doc" "misc" ];
|
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [
|
2023-01-11 07:51:40 +00:00
|
|
|
"-X github.com/MichaelMure/git-bug/commands.GitCommit=v${version}"
|
2021-08-27 14:25:00 +00:00
|
|
|
"-X github.com/MichaelMure/git-bug/commands.GitLastTag=${version}"
|
|
|
|
"-X github.com/MichaelMure/git-bug/commands.GitExactTag=${version}"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2023-01-11 07:51:40 +00:00
|
|
|
installShellCompletion \
|
|
|
|
--bash misc/completion/bash/git-bug \
|
|
|
|
--zsh misc/completion/zsh/git-bug \
|
|
|
|
--fish misc/completion/fish/git-bug
|
|
|
|
|
|
|
|
installManPage doc/man/*
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Distributed bug tracker embedded in Git";
|
|
|
|
homepage = "https://github.com/MichaelMure/git-bug";
|
2023-01-11 07:51:40 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ royneary DeeUnderscore ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
}
|