Set up matrix-rooms.cryto.net
parent
a26c526e93
commit
b23b4e9ea9
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue