10 stdenv.mkDerivation rec {
13 src = fetchFromGitHub {
16 rev = "${pname}-${version}";
17 sha256 = "07wa9anz99hnv6kffpcph3fbq8mjbyq17ij977ggwgw37zb9fzb5";
20 # autoreconf is run such that it *really* wants all the files, and there's no
21 # default ChangeLog. So make it happy.
22 preAutoreconf = "touch ChangeLog";
25 mkdir -p $out/lib/pidgin
26 mv $out/lib/pidgin-osd.{la,so} $out/lib/pidgin
29 nativeBuildInputs = [ autoreconfHook ];
36 homepage = "https://github.com/mbroemme/pidgin-osd";
37 description = "Plugin for Pidgin which implements on-screen display via libxosd";
38 license = licenses.gpl3;
39 platforms = platforms.linux;