mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
26 lines
599 B
Nix
26 lines
599 B
Nix
{ 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;
|
|
};
|
|
}
|