2018-07-21 00:44:44 +00:00
|
|
|
{ fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, libgcrypt }:
|
2015-11-13 13:37:41 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-30 19:11:40 +00:00
|
|
|
version = "1.4.2";
|
|
|
|
name = "bitlbee-steam-${version}";
|
2015-11-13 13:37:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-12-30 19:11:40 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
owner = "bitlbee";
|
2015-11-13 13:37:41 +00:00
|
|
|
repo = "bitlbee-steam";
|
2017-12-30 19:11:40 +00:00
|
|
|
sha256 = "121r92mgwv445wwxzh35n19fs5k81ihr0j19k256ia5502b1xxaq";
|
2015-11-13 13:37:41 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ bitlbee autoconf automake libtool glib libgcrypt ];
|
2015-11-13 13:37:41 +00:00
|
|
|
|
|
|
|
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;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-11-13 13:37:41 +00:00
|
|
|
};
|
|
|
|
}
|