2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 12:49:27 -07:00
|
|
|
|
2016-06-07 13:32:34 -07:00
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "consul-alerts";
|
2019-11-13 18:31:55 -08:00
|
|
|
version = "0.6.0";
|
2016-06-04 12:49:27 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/AcalephStorage/consul-alerts";
|
|
|
|
|
2018-06-24 10:18:51 -07:00
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2016-06-06 03:56:28 -07:00
|
|
|
src = fetchFromGitHub {
|
2016-06-04 12:49:27 -07:00
|
|
|
inherit rev;
|
2016-06-06 03:56:28 -07:00
|
|
|
owner = "AcalephStorage";
|
|
|
|
repo = "consul-alerts";
|
2019-11-13 18:31:55 -08:00
|
|
|
sha256 = "0836zicv76sd6ljhbbii1mrzh65pch10w3gfa128iynaviksbgn5";
|
2016-06-04 12:49:27 -07:00
|
|
|
};
|
2018-06-25 07:51:09 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-06-25 07:51:09 -07:00
|
|
|
description = "An extendable open source continuous integration server";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/AcalephStorage/consul-alerts";
|
2018-06-25 07:51:09 -07:00
|
|
|
# As per README
|
|
|
|
platforms = platforms.linux ++ platforms.freebsd ++ platforms.darwin;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ nh2 ];
|
|
|
|
};
|
2016-06-04 12:49:27 -07:00
|
|
|
}
|