stalwart-mail.webadmin: 0.1.19 -> 0.1.20 (#366347)

authored by Gaétan Lepage and committed by GitHub 818caf0f 07e53381

+8 -8
+8 -8
pkgs/by-name/st/stalwart-mail/webadmin.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "webadmin"; 19 - version = "0.1.19"; 19 + version = "0.1.20"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "stalwartlabs"; 23 23 repo = "webadmin"; 24 - rev = "refs/tags/v${version}"; 25 - hash = "sha256-jaNBYVIIxYjle4JQJdcvzl9f5slRvGPKqtzR2WGc0LE="; 24 + tag = "v${version}"; 25 + hash = "sha256-0/XiYFQDqcpRS9DXPyKQwoifnEd2YxFiyDbV12zd2RU="; 26 26 }; 27 27 28 28 npmDeps = fetchNpmDeps { ··· 31 31 hash = "sha256-na1HEueX8w7kuDp8LEtJ0nD1Yv39cyk6sEMpS1zix2s="; 32 32 }; 33 33 34 - cargoHash = "sha256-r4j4+vwmx8JJn3+6i6z6dYBOr6Efdid6qtw9oolCTW8="; 34 + cargoHash = "sha256-uyLGrCZvKiePHFG0C++ELwT/1FTH8c4baAUxV2ueHZ8="; 35 35 36 36 postPatch = '' 37 37 # Using local tailwindcss for compilation ··· 70 70 updateScript = nix-update-script { }; 71 71 }; 72 72 73 - meta = with lib; { 73 + meta = { 74 74 description = "Secure & modern all-in-one mail server Stalwart (webadmin module)"; 75 75 homepage = "https://github.com/stalwartlabs/webadmin"; 76 - changelog = "https://github.com/stalwartlabs/mail-server/blob/${version}/CHANGELOG"; 77 - license = licenses.agpl3Only; 78 - maintainers = with maintainers; [ onny ]; 76 + changelog = "https://github.com/stalwartlabs/webadmin/blob/${src.tag}/CHANGELOG.md"; 77 + license = lib.licenses.agpl3Only; 78 + maintainers = with lib.maintainers; [ onny ]; 79 79 }; 80 80 }