2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-10-23 22:41:36 +01:00
|
|
|
|
2020-03-08 12:31:07 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "git-bug";
|
2022-12-09 16:28:13 +00:00
|
|
|
version = "0.8.0"; # the `rev` below pins the version of the source to get
|
|
|
|
rev = "v0.8.0";
|
2018-10-23 22:41:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "MichaelMure";
|
|
|
|
repo = "git-bug";
|
2022-12-09 16:28:13 +00:00
|
|
|
sha256 = "12byf6nsamwz0ssigan1z299s01cyh8bhgj86bibl90agd4zs9n8";
|
2018-10-23 22:41:36 +01:00
|
|
|
};
|
|
|
|
|
2022-12-09 16:28:13 +00:00
|
|
|
vendorSha256 = "sha256-32kNDoBE50Jx1Ef9YwhDk7nd3CaTSnHPlu7PgWPUGfE=";
|
2020-03-08 12:31:07 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [
|
|
|
|
"-X github.com/MichaelMure/git-bug/commands.GitCommit=${rev}"
|
|
|
|
"-X github.com/MichaelMure/git-bug/commands.GitLastTag=${version}"
|
|
|
|
"-X github.com/MichaelMure/git-bug/commands.GitExactTag=${version}"
|
|
|
|
];
|
2019-05-01 23:47:30 +01:00
|
|
|
|
2018-10-23 22:41:36 +01:00
|
|
|
postInstall = ''
|
2022-12-09 16:28:13 +00:00
|
|
|
install -D -m 0644 misc/completion/bash/git-bug "$out/share/bash-completion/completions/git-bug"
|
|
|
|
install -D -m 0644 misc/completion/zsh/git-bug "$out/share/zsh/site-functions/git-bug"
|
2020-03-08 12:31:07 +00:00
|
|
|
install -D -m 0644 -t "$out/share/man/man1" doc/man/*
|
2022-12-09 16:28:13 +00:00
|
|
|
|
|
|
|
# not sure why the following executables are in $out/bin/
|
|
|
|
rm -f $out/bin/cmd
|
|
|
|
rm -f $out/bin/completion
|
|
|
|
rm -f $out/bin/doc
|
2018-10-23 22:41:36 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-23 22:41:36 +01:00
|
|
|
description = "Distributed bug tracker embedded in Git";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/MichaelMure/git-bug";
|
2021-03-28 19:42:36 +01:00
|
|
|
license = licenses.gpl3Only;
|
2018-10-23 22:41:36 +01:00
|
|
|
maintainers = with maintainers; [ royneary ];
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|