forked from mirrors/nixpkgs
Merge pull request #39363 from carlosdagos/go-jira-1.0.17
go-jira: init at 1.0.17
This commit is contained in:
commit
e0956295a9
|
@ -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";
|
||||
|
|
22
pkgs/applications/misc/go-jira/default.nix
Normal file
22
pkgs/applications/misc/go-jira/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue