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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
627 B
Nix
Raw Normal View History

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