summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/bitlbee-discord/default.nix
blob: c01b87d6b244d2952f51b8ea4fd7635a02369431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ fetchurl, fetchFromGitHub, stdenv, bitlbee, autoreconfHook, pkgconfig, glib }:

with stdenv.lib;
stdenv.mkDerivation rec {
  name = "bitlbee-discord-2017-12-27";

  src = fetchFromGitHub {
    rev = "6a03db169ad44fee55609ecd16e19f3c0f99a182";
    owner = "sm00th";
    repo = "bitlbee-discord";
    sha256 = "1ci9a12c6zg8d6i9f95pq6dal79cp4klmmsyj8ag2gin90kl3x95";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ bitlbee glib ];

  preConfigure = ''
    export BITLBEE_PLUGINDIR=$out/lib/bitlbee
    ./autogen.sh
  '';

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

    homepage = https://github.com/sm00th/bitlbee-discord;
    license = licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}