3
0
Fork 0
forked from mirrors/nixpkgs

matrix-dl: init at (unstable-)2019-09-22

This commit is contained in:
Andreas Wiese 2020-03-27 18:10:21 +01:00
parent 749028e92b
commit f0f6527e97
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "matrix-dl-unstable";
version = "2019-09-22";
src = fetchFromGitHub {
owner = "rubo77";
repo = "matrix-dl";
rev = "e91610f45b7b3b0aca34923309fc83ba377f8a69";
sha256 = "036xfdd21pcfjlilknc67z5jqpk0vz07853wwcsiac32iypc6f2q";
};
propagatedBuildInputs = with python3Packages; [
matrix-client
];
meta = with lib; {
description = "Download backlogs from Matrix as raw text";
homepage = src.meta.homepage;
license = licenses.unfree;
maintainers = with maintainers; [ aw ];
platforms = platforms.unix;
};
}

View file

@ -20689,6 +20689,8 @@ in
canonicaljson;
};
matrix-dl = callPackage ../applications/networking/instant-messengers/matrix-dl { };
matrix-recorder = callPackage ../applications/networking/instant-messengers/matrix-recorder {};
mblaze = callPackage ../applications/networking/mailreaders/mblaze { };