Merge pull request #89183 from timstott/go-jira

go-jira: 1.0.17 -> 1.0.23
This commit is contained in:
Maximilian Bosch 2020-06-01 17:43:25 +02:00 committed by GitHub
commit b447269f08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 11 deletions

View file

@ -7854,6 +7854,12 @@
githubId = 2845239;
name = "Tim Put";
};
timstott = {
email = "stott.timothy@gmail.com";
github = "timstott";
githubId = 1334474;
name = "Timothy Stott";
};
tiramiseb = {
email = "sebastien@maccagnoni.eu";
github = "tiramiseb";

View file

@ -1,22 +1,22 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchgit }:
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "go-jira";
version = "1.0.17";
version = "1.0.23";
goPackagePath = "gopkg.in/Netflix-Skunkworks/go-jira.v1";
src = fetchgit {
src = fetchFromGitHub {
rev = "v${version}";
url = "https://gopkg.in/Netflix-Skunkworks/go-jira.v1";
sha256 = "0ap5dzikp934mawigmv7ighajr5yxpck2gpnb2cmkc1p6qa6gn4v";
owner = "go-jira";
repo = "jira";
sha256 = "0qk5ifjxkqisvgv066rw8xj2zszc9mhc0by4338xjd7ng10jkk7b";
};
vendorSha256 = "18jwxnkv94lsxfv57ga519knxm077cc8chp5c992ipk58a04nv18";
meta = with stdenv.lib; {
description = "Simple command line client for Atlassian's Jira service written in Go";
homepage = "https://github.com/Netflix-Skunkworks/go-jira";
homepage = "https://github.com/go-jira/jira";
license = licenses.asl20;
maintainers = [ maintainers.carlosdagos ];
maintainers = with maintainers; [ carlosdagos timstott ];
};
}