pidgin-osd: init at 0.1.0 (#16792)

* pidgin-osd: init at 0.1.0

A straightforward pidgin plugin; kind of ancient, but still works fine.

* Use autoreconf, which minor hackery around ChangeLog.
This commit is contained in:
edanaher 2016-07-20 19:12:31 -04:00 committed by Rok Garbas
parent 4e84c6fc7c
commit 5682279d14
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, fetchurl, pidgin, xosd
, autoreconfHook } :
stdenv.mkDerivation rec {
name = "pidgin-osd-0.1.0";
src = fetchurl {
url = https://github.com/mbroemme/pidgin-osd/archive/pidgin-osd-0.1.0.tar.gz;
sha256 = "11hqfifhxa9gijbnp9kq85k37hvr36spdd79cj9bkkvw4kyrdp3j";
};
makeFlags = "PIDGIN_LIBDIR=$(out)";
# autoreconf is run such that it *really* wants all the files, and there's no
# default ChangeLog. So make it happy.
preAutoreconf = "touch ChangeLog";
postInstall = ''
mkdir -p $out/lib/pidgin
ln -s $out/pidgin $out/lib/pidgin
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ xosd pidgin ];
meta = with stdenv.lib; {
homepage = https://github.com/mbroemme/pidgin-osd;
description = "Plugin for Pidgin which implements on-screen display via libxosd";
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View file

@ -14141,6 +14141,8 @@ in
pidginotr = callPackage ../applications/networking/instant-messengers/pidgin-plugins/otr { };
pidginosd = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-osd { };
pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { };
pidginwindowmerge = callPackage ../applications/networking/instant-messengers/pidgin-plugins/window-merge { };