Merge pull request #39363 from carlosdagos/go-jira-1.0.17

go-jira: init at 1.0.17
This commit is contained in:
lewo 2018-04-24 16:13:25 +02:00 committed by GitHub
commit e0956295a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View file

@ -720,6 +720,11 @@
github = "canndrew";
name = "Andrew Cann";
};
carlosdagos = {
email = "m@cdagostino.io";
github = "carlosdagos";
name = "Carlos D'Agostino";
};
carlsverre = {
email = "accounts@carlsverre.com";
github = "carlsverre";

View file

@ -0,0 +1,22 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "go-jira-${version}";
version = "1.0.17";
goPackagePath = "gopkg.in/Netflix-Skunkworks/go-jira.v1";
src = fetchgit {
rev = "v${version}";
url = "https://gopkg.in/Netflix-Skunkworks/go-jira.v1";
sha256 = "0ap5dzikp934mawigmv7ighajr5yxpck2gpnb2cmkc1p6qa6gn4v";
};
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";
license = licenses.asl20;
maintainers = [ maintainers.carlosdagos ];
};
}

View file

@ -3120,6 +3120,8 @@ with pkgs;
jnettop = callPackage ../tools/networking/jnettop { };
go-jira = callPackage ../applications/misc/go-jira { };
john = callPackage ../tools/security/john {
gcc = gcc49; # doesn't build with gcc5
};