nixpkgs/pkgs/servers/kapowbang/default.nix

27 lines
606 B
Nix
Raw Permalink Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-05-20 21:02:01 +00:00
buildGoModule rec {
pname = "kapowbang";
2021-03-13 07:35:05 +00:00
version = "0.7.0";
2020-05-20 21:02:01 +00:00
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "BBVA";
repo = "kapow";
2020-05-20 21:02:01 +00:00
rev = "v${version}";
2021-03-13 07:35:05 +00:00
sha256 = "sha256-0ftdc3ol1g0WnZgicXl46Xpph4cUYk/G/eeu+9JnPyA=";
2020-05-20 21:02:01 +00:00
};
2021-03-13 07:35:05 +00:00
vendorSha256 = "sha256-41Jk3aTe4EA5dwkriEo48QNJg2k3T/R/8i8XWcURcG8=";
2020-05-20 21:02:01 +00:00
doCheck = false;
meta = with lib; {
2020-05-20 21:02:01 +00:00
homepage = "https://github.com/BBVA/kapow";
description = "Expose command-line tools over HTTP";
license = licenses.asl20;
maintainers = with maintainers; [ nilp0inter ];
};
}