Merge pull request #88458 from nilp0inter/master

kapow: init at 0.5.3
This commit is contained in:
adisbladis
2020-05-22 10:34:07 +02:00
committed by GitHub
3 changed files with 34 additions and 0 deletions
+6
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";
+26
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 ];
};
}
+2
View File
@@ -15662,6 +15662,8 @@ in
jetty = callPackage ../servers/http/jetty { };
kapow = callPackage ../servers/kapow { };
keycloak = callPackage ../servers/keycloak { };
knot-dns = callPackage ../servers/dns/knot-dns { };