Skip to content

Commit

Permalink
pidgin-osd: init at 0.1.0 (#16792)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
edanaher authored and garbas committed Jul 20, 2016
1 parent 4e84c6f commit 5682279
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 5682279

Please sign in to comment.