summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/bitlbee-steam/default.nix
blob: 2674dd521322578daeaa85152369809878582cde (plain) (blame)
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
{ fetchurl, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, libgcrypt }:

with stdenv.lib;
stdenv.mkDerivation rec {
  name = "bitlbee-steam-2015-09-10";

  src = fetchFromGitHub {
    rev = "011375b2d3c67c15d51ca203de0ecaab3b4b7587";
    owner = "jgeboski";
    repo = "bitlbee-steam";
    sha256 = "1m91x3208z9zxppz998i6060alcalfly9ix9jxismj45xyp6mdx7";
  };

  buildInputs = [ bitlbee autoconf automake libtool pkgconfig glib libgcrypt ];

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

  meta = {
    description = "Steam protocol plugin for BitlBee";

    homepage = https://github.com/jgeboski/bitlbee-steam;
    license = licenses.gpl2Plus;
  };
}