1 files changed, 4 insertions, 5 deletions
diff --git a/default.nix b/default.nix
index 7d97e1f..2bd0292 100644
--- a/default.nix
+++ b/default.nix
@@ -5,8 +5,7 @@
nodejs,
buildNpmPackage,
}:
-
-buildNpmPackage rec {
+buildNpmPackage {
pname = "out-of-your-element";
version = "0";
src = fetchgit {
@@ -31,13 +30,13 @@ buildNpmPackage rec {
'';
meta = with lib; {
- description = "A Matrix Discord bridge";
+ description = "Matrix-Discord bridge with modern features.";
homepage = "https://gitdab.com/cadence/out-of-your-element";
longDescription = ''
- Cool.
+ Modern Matrix-to-Discord appservice bridge, created by @cadence:cadence.moe.
'';
license = licenses.gpl3;
- #maintainers = with maintainers; [ RorySys ];
+ # maintainers = with maintainers; [ RorySys ];
mainProgram = "matrix-ooye";
};
}
|