Merge branch 'master' of git.cryto.net:joepie91/morph-rc
commit
4337e920ff
@ -0,0 +1,18 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.cryto.nodeApplication {
|
||||
name = "matrix-rooms";
|
||||
source = pkgs.stdenv.mkDerivation {
|
||||
name = "matrix-rooms-application";
|
||||
src = pkgs.cryto.fetchFromCrytoGit {
|
||||
owner = "joepie91";
|
||||
repo = "matrix-room-list-viewer";
|
||||
rev = "5912b79024cba33ee7e291f325d0286b8304af99";
|
||||
sha256 = "199in3m3vll0i0qsz869x2q6zqn1xxgyvia3fxnmschvfmybbf8r";
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out
|
||||
tar -xzvf $src -C $out
|
||||
'';
|
||||
};
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Modular Matrix</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Modular Matrix</h1>
|
||||
<p>
|
||||
<em><strong>NOTE:</strong> If you're looking for the Matrix website, go to <a href="https://matrix.org">Matrix.org</a>. If you're looking for the Matrix hosting service, go to <a href="https://modular.im/">Modular.im</a>. This project is not affiliated with either of those two.</em>
|
||||
</p>
|
||||
<p>
|
||||
Hi! This will eventually be the website for Modular Matrix, a project to build a modular JavaScript SDK for the <a href="https://matrix.org">Matrix protocol</a>, as an alternative to the <code>matrix-js-sdk</code>.
|
||||
</p>
|
||||
<p>
|
||||
Currently there's not really anything here yet, though you can have a look at the <a href="https://www.npmjs.com/org/modular-matrix?tab=packages">already-published packages</a> if you're curious about how things are going.
|
||||
</p>
|
||||
<p>
|
||||
You can contact me on Matrix as <a href="https://matrix.to/#/@joepie91:pixie.town">@joepie91:pixie.town</a>.
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue