2018-07-20 17:44:44 -07:00
|
|
|
{ fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, libgcrypt }:
|
2015-11-13 05:37:41 -08:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-30 11:11:40 -08:00
|
|
|
version = "1.4.2";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "bitlbee-steam";
|
2015-11-13 05:37:41 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-12-30 11:11:40 -08:00
|
|
|
rev = "v${version}";
|
|
|
|
owner = "bitlbee";
|
2015-11-13 05:37:41 -08:00
|
|
|
repo = "bitlbee-steam";
|
2017-12-30 11:11:40 -08:00
|
|
|
sha256 = "121r92mgwv445wwxzh35n19fs5k81ihr0j19k256ia5502b1xxaq";
|
2015-11-13 05:37:41 -08:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2020-07-15 09:08:51 -07:00
|
|
|
buildInputs = [ bitlbee autoconf automake libtool libgcrypt ];
|
2015-11-13 05:37:41 -08:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Steam protocol plugin for BitlBee";
|
|
|
|
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/jgeboski/bitlbee-steam";
|
2015-11-13 05:37:41 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-11-13 05:37:41 -08:00
|
|
|
};
|
|
|
|
}
|