Skip to content

Commit

Permalink
Add 'gists/1cf367bd6777d1dc842d/' from commit '35ee54b60594cdf03e9e82…
Browse files Browse the repository at this point in the history
…b73ec18212b00b3a06'

git-subtree-dir: gists/1cf367bd6777d1dc842d
git-subtree-mainline: 07aa830
git-subtree-split: 35ee54b
  • Loading branch information
jwiegley committed Aug 28, 2015
2 parents 07aa830 + 35ee54b commit 304dea4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions gists/1cf367bd6777d1dc842d/facebook.nix
@@ -0,0 +1,40 @@
{ fetchgit, stdenv, pkgconfig, check, python }:

with stdenv.lib;
stdenv.mkDerivation rec {
name = "bitlbee-facebook-3.4.1";

src = fetchgit {
url = git://github.com/jgeboski/bitlbee-facebook.git;
rev = "c87650c3bd04a16b125cceb1d7fd8aa9c729143f";
sha256 = "ede3730455c3c91b2fd612871fa7262bdacd3dff4ba77c5dfbc3c1f0de9b8a34";
};

buildInputs = [ pkgconfig python ]
++ optional doCheck check;

configurePhase = "./autogen.sh";

doCheck = true;

meta = {
description = "Facebook plugin for Bitlbee";

longDescription = ''
BitlBee brings IM (instant messaging) to IRC clients. It's a
great solution for people who have an IRC client running all the
time and don't want to run an additional MSN/AIM/whatever
client.
BitlBee currently supports the following IM networks/protocols:
XMPP/Jabber (including Google Talk), MSN Messenger, Yahoo!
Messenger, AIM and ICQ.
'';

homepage = http://www.bitlbee.org/;
license = licenses.gpl2Plus;

maintainers = with maintainers; [ wkennington pSub ];
platforms = platforms.gnu; # arbitrary choice
};
}

0 comments on commit 304dea4

Please sign in to comment.