mailhog: init at 1.0.0 (#26821)
* mailhog: init at 1.0.0 * formatting nitpicks
This commit is contained in:
committed by
Jörg Thalheim
parent
da1525260b
commit
5d7fd7e7fa
@@ -0,0 +1,25 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "MailHog-${version}";
|
||||
version = "1.0.0";
|
||||
rev = "v${version}";
|
||||
|
||||
goPackagePath = "github.com/mailhog/MailHog";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "mailhog";
|
||||
repo = "MailHog";
|
||||
sha256 = "0r6zidkffb8q12zyxd063jy0ig2x93llna4zb5i2qjh9gb971i83";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Web and API based SMTP testing";
|
||||
homepage = "https://github.com/mailhog/MailHog";
|
||||
maintainers = with maintainers; [ disassembler ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user