Add tkabber plugins v0.11.1.

This commit is contained in:
aszlig 2012-06-04 20:30:45 +02:00 committed by Eelco Dolstra
parent 74b408e151
commit b06fb762b4
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{stdenv, fetchurl, tkabber}:
stdenv.mkDerivation rec {
name = "tkabber-plugins-${version}";
version = "0.11.1";
src = fetchurl {
url = "http://files.jabber.ru/tkabber/tkabber-plugins-${version}.tar.gz";
sha256 = "0jxriqvsckbih5a4lpisxy6wjw022wsz5j5n171gz0q3xw19dbgz";
};
configurePhase = ''
mkdir -p $out/bin
sed -e "s@/usr/local@$out@" -i Makefile
'';
buildInputs = [tkabber];
}

View File

@ -1557,6 +1557,8 @@ let
tkabber = callPackage ../applications/networking/instant-messengers/tkabber { };
tkabber_plugins = callPackage ../applications/networking/instant-messengers/tkabber-plugins { };
tm = callPackage ../tools/system/tm { };
trang = callPackage ../tools/text/xml/trang { };