nixpkgs/pkgs/applications/networking/instant-messengers/bitlbee-steam/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
756 B
Nix
Raw Normal View History

2021-11-13 22:28:25 +00:00
{ lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkg-config, libgcrypt }:
2015-11-13 13:37:41 +00:00
stdenv.mkDerivation rec {
2017-12-30 19:11:40 +00:00
version = "1.4.2";
pname = "bitlbee-steam";
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
};
nativeBuildInputs = [ pkg-config autoconf automake ];
buildInputs = [ bitlbee libtool libgcrypt ];
2015-11-13 13:37:41 +00:00
preConfigure = ''
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
./autogen.sh
'';
meta = with lib; {
2015-11-13 13:37:41 +00:00
description = "Steam protocol plugin for BitlBee";
homepage = "https://github.com/jgeboski/bitlbee-steam";
2015-11-13 13:37:41 +00:00
license = licenses.gpl2Plus;
2021-01-15 05:42:41 +00:00
platforms = lib.platforms.linux;
2015-11-13 13:37:41 +00:00
};
}