go-jira: init at 1.0.17

wip/yesman
Carlos D'Agostino 6 years ago
parent e2b5e17791
commit 49f02db58c
  1. 5
      maintainers/maintainer-list.nix
  2. 22
      pkgs/applications/misc/go-jira/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -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";

@ -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 { };
go-jira = callPackage ../applications/misc/go-jira { };
john = callPackage ../tools/security/john {
gcc = gcc49; # doesn't build with gcc5
};

Loading…
Cancel
Save