summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-osd/default.nix
blob: 4c7cb2c46bfa283c3601a079f4532fc339646a58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub, pidgin, xosd
, autoreconfHook } :

stdenv.mkDerivation rec {
  name = "pidgin-osd-0.2.0";
  src = fetchFromGitHub {
    owner = "edanaher";
    repo = "pidgin-osd";
    rev = name;
    sha256 = "07wa9anz99hnv6kffpcph3fbq8mjbyq17ij977ggwgw37zb9fzb5";
  };

  # 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
    mv $out/lib/pidgin-osd.{la,so} $out/lib/pidgin
  '';

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ xosd pidgin ];

  meta = with 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;
  };
}