bitlbee-steam: init at 2015-09-10

This commit is contained in:
lassulus 2015-11-13 14:37:41 +01:00
parent f4ec8c9dc7
commit 4803b2f31a
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,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;
};
}

View File

@ -11022,6 +11022,8 @@ let
bitlbee-facebook = callPackage ../applications/networking/instant-messengers/bitlbee-facebook { };
bitlbee-steam = callPackage ../applications/networking/instant-messengers/bitlbee-steam { };
bitmeter = callPackage ../applications/audio/bitmeter { };
bleachbit = callPackage ../applications/misc/bleachbit { };