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