nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix

32 lines
776 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, json-glib }:
2015-09-08 19:14:18 +00:00
2021-01-15 05:42:41 +00:00
with lib;
2015-09-08 19:14:18 +00:00
stdenv.mkDerivation rec {
pname = "bitlbee-facebook";
2020-10-21 13:21:14 +00:00
version = "1.2.1";
2015-09-08 19:14:18 +00:00
src = fetchFromGitHub {
2017-03-29 20:19:07 +00:00
rev = "v${version}";
2017-09-14 13:15:39 +00:00
owner = "bitlbee";
2015-09-08 19:14:18 +00:00
repo = "bitlbee-facebook";
2020-10-21 13:21:14 +00:00
sha256 = "1yjhjhk3jzjip13lq009vlg84lm2lzwhac5jy0aq3vkcz6rp94rc";
2015-09-08 19:14:18 +00:00
};
2017-03-29 20:19:07 +00:00
nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
buildInputs = [ bitlbee json-glib ];
2015-09-08 19:14:18 +00:00
preConfigure = ''
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
./autogen.sh
'';
meta = {
description = "The Facebook protocol plugin for bitlbee";
homepage = "https://github.com/bitlbee/bitlbee-facebook";
2015-09-08 19:14:18 +00:00
license = licenses.gpl2Plus;
2021-01-15 05:42:41 +00:00
platforms = lib.platforms.linux;
2015-09-08 19:14:18 +00:00
};
}