pidgin-carbons: init at 0.1.3
Implements XMPP extension XEP-0280: Message Carbons for pidgin
This commit is contained in:
parent
b2ed3db94a
commit
36bd9d2463
2 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, libxml2, pidgin, pkgconfig, fetchFromGitHub } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pidgin-carbons-${version}";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gkdr";
|
||||
repo = "carbons";
|
||||
rev = "v${version}";
|
||||
sha256 = "05hcqvsirb7gnpfcszsrgal5q7dajl2wdi2dy7c41zgl377syavw";
|
||||
};
|
||||
|
||||
makeFlags = [ "PURPLE_PLUGIN_DIR=$(out)/lib/pidgin" ];
|
||||
|
||||
buildInputs = [ libxml2 pidgin pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/gkdr/carbons";
|
||||
description = "XEP-0280: Message Carbons plugin for libpurple";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ jb55 ];
|
||||
};
|
||||
}
|
|
@ -15088,6 +15088,8 @@ with pkgs;
|
|||
|
||||
pidgin-skypeweb = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-skypeweb { };
|
||||
|
||||
pidgin-carbons = callPackage ../applications/networking/instant-messengers/pidgin-plugins/carbons { };
|
||||
|
||||
pidgin-xmpp-receipts = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-xmpp-receipts { };
|
||||
|
||||
pidginotr = callPackage ../applications/networking/instant-messengers/pidgin-plugins/otr { };
|
||||
|
|
Loading…
Reference in a new issue