1 { lib, fetchFromGitHub, stdenv, bitlbee, autoreconfHook, pkg-config, glib }:
3 stdenv.mkDerivation rec {
4 pname = "bitlbee-discord";
7 src = fetchFromGitHub {
10 repo = "bitlbee-discord";
11 sha256 = "00qgdvrp7hv02n0ns685igp810zxmv3adsama8601122al6x041n";
14 nativeBuildInputs = [ autoreconfHook pkg-config ];
15 buildInputs = [ bitlbee ];
18 export BITLBEE_PLUGINDIR=$out/lib/bitlbee
19 export BITLBEE_DATADIR=$out/share/bitlbee
24 description = "Bitlbee plugin for Discord";
26 homepage = "https://github.com/sm00th/bitlbee-discord";
27 license = licenses.gpl2Plus;
28 maintainers = with maintainers; [ lassulus ];
29 platforms = lib.platforms.linux;