biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / instant-messengers / pidgin / pidgin-plugins / pidgin-osd / default.nix
blobd50a3ed5c30f283f9af5aa64e667c58a36046543
1 { lib, stdenv, fetchFromGitHub, pidgin, xosd
2 , autoreconfHook } :
4 stdenv.mkDerivation rec {
5   pname = "pidgin-osd";
6   version = "0.2.0";
7   src = fetchFromGitHub {
8     owner = "edanaher";
9     repo = "pidgin-osd";
10     rev = "${pname}-${version}";
11     sha256 = "07wa9anz99hnv6kffpcph3fbq8mjbyq17ij977ggwgw37zb9fzb5";
12   };
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";
18   postInstall = ''
19     mkdir -p $out/lib/pidgin
20     mv $out/lib/pidgin-osd.{la,so} $out/lib/pidgin
21   '';
23   nativeBuildInputs = [ autoreconfHook ];
24   buildInputs = [ xosd pidgin ];
26   meta = with lib; {
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;
31   };