go-jira: init at 1.0.17

This commit is contained in:
Carlos D'Agostino 2018-04-24 23:40:37 +10:00
parent e2b5e17791
commit 49f02db58c
3 changed files with 29 additions and 0 deletions

View file

@ -710,6 +710,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

@ -3118,6 +3118,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
};