nixpkgs/pkgs/servers/kapowbang/default.nix

27 lines
606 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-05-20 21:02:01 +00:00
buildGoModule rec {
pname = "kapowbang";
2021-01-19 01:57:35 +00:00
version = "0.6.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-01-19 01:57:35 +00:00
sha256 = "sha256-+GZarnG+SlxynoXYTvI1f9eki3DobiDt7vUdWlC0ECk=";
2020-05-20 21:02:01 +00:00
};
2021-01-19 01:57:35 +00:00
vendorSha256 = "sha256-vXu64o/MTmw9oZL4MIHB+PEfYLcKVh5A5iGZ1RW1Xd4=";
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 ];
};
}