go-jira: init at 1.0.17
This commit is contained in:
parent
e2b5e17791
commit
49f02db58c
|
@ -710,6 +710,11 @@
|
||||||
github = "canndrew";
|
github = "canndrew";
|
||||||
name = "Andrew Cann";
|
name = "Andrew Cann";
|
||||||
};
|
};
|
||||||
|
carlosdagos = {
|
||||||
|
email = "m@cdagostino.io";
|
||||||
|
github = "carlosdagos";
|
||||||
|
name = "Carlos D'Agostino";
|
||||||
|
};
|
||||||
carlsverre = {
|
carlsverre = {
|
||||||
email = "accounts@carlsverre.com";
|
email = "accounts@carlsverre.com";
|
||||||
github = "carlsverre";
|
github = "carlsverre";
|
||||||
|
|
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3118,6 +3118,8 @@ with pkgs;
|
||||||
|
|
||||||
jnettop = callPackage ../tools/networking/jnettop { };
|
jnettop = callPackage ../tools/networking/jnettop { };
|
||||||
|
|
||||||
|
go-jira = callPackage ../applications/misc/go-jira { };
|
||||||
|
|
||||||
john = callPackage ../tools/security/john {
|
john = callPackage ../tools/security/john {
|
||||||
gcc = gcc49; # doesn't build with gcc5
|
gcc = gcc49; # doesn't build with gcc5
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue