kapow: init at 0.5.3

This commit is contained in:
Roberto Abdelkader Martínez Pérez 2020-05-20 23:02:01 +02:00
parent 3e66d4e12e
commit 05ff09956c
No known key found for this signature in database
GPG key ID: 19D33855A6C64201
3 changed files with 34 additions and 0 deletions

View file

@ -5558,6 +5558,12 @@
githubId = 4368690;
name = "Ratko Mladic";
};
nilp0inter = {
email = "robertomartinezp@gmail.com";
github = "nilp0inter";
githubId = 1224006;
name = "Roberto Abdelkader Martínez Pérez";
};
ninjatrappeur = {
email = "felix@alternativebit.fr";
github = "ninjatrappeur";

View file

@ -0,0 +1,26 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kapow";
version = "0.5.3";
goPackagePath = "github.com/BBVA/kapow";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "BBVA";
repo = pname;
rev = "v${version}";
sha256 = "0m5b9lvg5d908d27khyx9p3567pap1b2mxl8fk7cxhb51r89jypj";
};
vendorSha256 = "159s46rhg67mgglaxgddx3k8kssl0cqiq8yjdqgjhhxppf16r7dy";
meta = with stdenv.lib; {
homepage = "https://github.com/BBVA/kapow";
description = "Expose command-line tools over HTTP";
license = licenses.asl20;
maintainers = with maintainers; [ nilp0inter ];
};
}

View file

@ -15658,6 +15658,8 @@ in
jetty = callPackage ../servers/http/jetty { };
kapow = callPackage ../servers/kapow { };
keycloak = callPackage ../servers/keycloak { };
knot-dns = callPackage ../servers/dns/knot-dns { };