nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee-steam/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

29 lines
801 B
Nix

{ 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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ bitlbee autoconf automake libtool 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;
platforms = stdenv.lib.platforms.linux;
};
}