n8n: remove with lib;

This commit is contained in:
Gutyina Gergő
2024-10-23 00:04:27 +02:00
parent 64204e1dbb
commit 4541db911c
+4 -4
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;
};
})