n8n: remove with lib;

This commit is contained in:
Gutyina Gergő 2024-10-20 23:50:14 +02:00
parent 64204e1dbb
commit 4541db911c
No known key found for this signature in database

View File

@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: {
dontStrip = true;
meta = with lib; {
meta = {
description = "Free and source-available fair-code licensed workflow automation tool";
longDescription = ''
Free and source-available fair-code licensed workflow automation tool.
@ -97,11 +97,11 @@ stdenv.mkDerivation (finalAttrs: {
'';
homepage = "https://n8n.io";
changelog = "https://github.com/n8n-io/n8n/releases/tag/${finalAttrs.src.rev}";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
gepbird
];
license = licenses.sustainableUse;
license = lib.licenses.sustainableUse;
mainProgram = "n8n";
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
})