mailpit: 1.10.4 -> 1.11.0

This commit is contained in:
Gaël Reyrol 2023-12-14 09:14:25 +01:00
parent aa9d4729cb
commit 4e393f9672
No known key found for this signature in database
GPG Key ID: DFB9B69A2C427F61

View File

@ -12,13 +12,13 @@
}:
let
version = "1.10.4";
version = "1.11.0";
src = fetchFromGitHub {
owner = "axllent";
repo = "mailpit";
rev = "v${version}";
hash = "sha256-DEeE562E+G/Qfpqc1kr9bklG6109OZENpglWmHj0Tpo=";
hash = "sha256-+PtyoItn9Dwf7HU3OjzldqfYgdu0LatPmijXK3gAKYY=";
};
# Separate derivation, because if we mix this in buildGoModule, the separate
@ -30,7 +30,7 @@ let
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-FEwaWHf5Ic2t933xSacmc+T0RydZOPCK1yQxTRZ0u38=";
hash = "sha256-zx6B6kDVdKJMQQPONC/KWRXK2i+4l5w9hzrAqatrKTE=";
};
env = lib.optionalAttrs (stdenv.isDarwin && stdenv.isx86_64) {
@ -56,7 +56,7 @@ buildGoModule {
pname = "mailpit";
inherit src version;
vendorHash = "sha256-oBkdC4Qx9vuz9rvNxk27TM6vkQokOcFQ4hEZCxlT8xo=";
vendorHash = "sha256-UQms3YWXJRP1u1ERlsFNpo6ei86qaH6pgfvCLnB3AAk=";
CGO_ENABLED = 0;
@ -67,7 +67,6 @@ buildGoModule {
'';
passthru.tests.version = testers.testVersion {
inherit version;
package = mailpit;
command = "mailpit version";
};