nixpkgs/pkgs/applications/misc/go-jira/default.nix

25 lines
627 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-04-24 15:40:37 +02:00
2020-05-31 12:18:54 +02:00
buildGoModule rec {
pname = "go-jira";
2021-06-17 17:20:54 +02:00
version = "1.0.28";
2018-04-24 15:40:37 +02:00
2020-05-31 12:18:54 +02:00
src = fetchFromGitHub {
2018-04-24 15:40:37 +02:00
rev = "v${version}";
2020-05-31 12:18:54 +02:00
owner = "go-jira";
repo = "jira";
2021-06-17 17:20:54 +02:00
sha256 = "sha256-h/x77xGqdOxPBxdchElZU9GFgjnNo89o9gx4fYM5dME=";
2018-04-24 15:40:37 +02:00
};
2021-06-17 17:20:54 +02:00
vendorSha256 = "sha256-r69aFl3GwgZ1Zr4cEy4oWlqsrjNCrqjwW9BU9+d8xDQ=";
2020-05-31 12:18:54 +02:00
doCheck = false;
meta = with lib; {
2018-04-24 15:40:37 +02:00
description = "Simple command line client for Atlassian's Jira service written in Go";
2020-05-31 12:18:54 +02:00
homepage = "https://github.com/go-jira/jira";
2018-04-24 15:40:37 +02:00
license = licenses.asl20;
2020-05-31 12:18:54 +02:00
maintainers = with maintainers; [ carlosdagos timstott ];
2018-04-24 15:40:37 +02:00
};
}