Merge pull request #205597 from r-ryantm/auto-update/snappymail

snappymail: 2.22.6 -> 2.23.0
This commit is contained in:
Jörg Thalheim 2022-12-17 08:45:52 +00:00 committed by GitHub
commit 97e5df8949
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,17 @@
{ lib, stdenv, fetchurl, writeText
, dataPath ? "/var/lib/snappymail" }:
{ lib
, stdenv
, fetchurl
, writeText
, dataPath ? "/var/lib/snappymail"
}:
stdenv.mkDerivation rec {
pname = "snappymail";
version = "2.22.6";
version = "2.23.0";
src = fetchurl {
url = "https://github.com/the-djmaze/snappymail/releases/download/v${version}/snappymail-${version}.tar.gz";
sha256 = "sha256-B3ojd6Xd5qk6KL5JAnrp52XeW0xJ7z9VJQRPjVmPgv0=";
sha256 = "sha256-wOHp0hNxpDa6JPDaGNHG2+TL+YTP3GaKLab/PdxtU20=";
};
sourceRoot = "snappymail";
@ -27,8 +32,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Simple, modern & fast web-based email client";
homepage = "https://snappymail.eu";
changelog = "https://github.com/the-djmaze/snappymail/blob/v${version}/CHANGELOG.md";
downloadPage = "https://github.com/the-djmaze/snappymail/releases";
license = licenses.agpl3;
platforms = platforms.all;