fluffychat: init at v1.2.0

This commit is contained in:
Cole Mickens 2020-10-23 16:42:42 -07:00 committed by Maciej Krüger
parent 4d900be80b
commit 07a8e697f6
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, fetchFromGitLab
, flutter
, olm
}:
flutter.mkFlutterApp rec {
pname = "fluffychat";
version = "1.2.0";
vendorHash = "sha256-Qg0IlajbIl8e3BkKgn4O+mbZGvhfqr7XwllBLJQAA/I=";
src = fetchFromGitLab {
owner = "famedly";
repo = "fluffychat";
rev = "v${version}";
hash = "sha256-PJH3jMQc6u9R6Snn+9rNN8t+8kt6l3Xt7zKPbpqj13E=";
};
buildInputs = [
olm
];
meta = with lib; {
description = "Chat with your friends (matrix client)";
homepage = "https://fluffychat.im/";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ mkg20001 ];
platforms = platforms.linux;
};
}

View File

@ -1792,6 +1792,8 @@ with pkgs;
fspy = callPackage ../applications/misc/fspy { };
fluffychat = callPackage ../applications/networking/instant-messengers/fluffychat { };
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
genann = callPackage ../development/libraries/genann { };