From 5802980437ba595967c52cb70e53178718456bf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Wed, 17 Sep 2025 22:04:25 -0600 Subject: [PATCH] fix(quiver): Add meta --- pkgs/quiver/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/quiver/default.nix b/pkgs/quiver/default.nix index 4a1d906..e6512ce 100644 --- a/pkgs/quiver/default.nix +++ b/pkgs/quiver/default.nix @@ -54,4 +54,12 @@ in stdenv.mkDerivation (final: { buildInputs = [ nodejs_20 ]; + meta = { + description = '' + A modern commutative diagram editor for the web. + ''; + homepage = "https://q.uiver.app/"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + }; })