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