1 { lib, stdenv, fetchFromGitHub, pidgin, xosd
4 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "${pname}-${version}";
11 sha256 = "07wa9anz99hnv6kffpcph3fbq8mjbyq17ij977ggwgw37zb9fzb5";
14 # autoreconf is run such that it *really* wants all the files, and there's no
15 # default ChangeLog. So make it happy.
16 preAutoreconf = "touch ChangeLog";
19 mkdir -p $out/lib/pidgin
20 mv $out/lib/pidgin-osd.{la,so} $out/lib/pidgin
23 nativeBuildInputs = [ autoreconfHook ];
24 buildInputs = [ xosd pidgin ];
27 homepage = "https://github.com/mbroemme/pidgin-osd";
28 description = "Plugin for Pidgin which implements on-screen display via libxosd";
29 license = licenses.gpl3;
30 platforms = platforms.linux;