biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / monitoring / consul-alerts / default.nix
blob23bf58c98e597b33888377744f95f4b659fc6144
1 { lib, buildGoPackage, fetchFromGitHub }:
3 buildGoPackage rec {
4   pname = "consul-alerts";
5   version = "0.6.0";
6   rev = "v${version}";
8   goPackagePath = "github.com/AcalephStorage/consul-alerts";
10   goDeps = ./deps.nix;
12   src = fetchFromGitHub {
13     inherit rev;
14     owner = "AcalephStorage";
15     repo = "consul-alerts";
16     sha256 = "0836zicv76sd6ljhbbii1mrzh65pch10w3gfa128iynaviksbgn5";
17   };
19   meta = with lib; {
20     mainProgram = "consul-alerts";
21     description = "An extendable open source continuous integration server";
22     homepage = "https://github.com/AcalephStorage/consul-alerts";
23     # As per README
24     platforms = platforms.linux ++ platforms.freebsd ++ platforms.darwin;
25     license = licenses.gpl2;
26     maintainers = with maintainers; [ nh2 ];
27   };