summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins/window-merge/default.nix
blob: 37b2a1f0c62d69d6ff5e5720826dc7aa016751a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pidgin } :

stdenv.mkDerivation rec {
  name = "pidgin-window-merge-${version}";
  version = "0.3";

  src = fetchurl {
    url = "https://github.com/downloads/dm0-/window_merge/window_merge-${version}.tar.gz";
    sha256 = "0cb5rvi7jqvm345g9mlm4wpq0240kcybv81jpw5wlx7hz0lwi478";
  };

  buildInputs = [ pidgin ];

  meta = with stdenv.lib; {
    homepage = https://github.com/dm0-/window_merge;
    description = "Pidgin plugin that merges the Buddy List window with a conversation window";
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jgeerds ];
  };
}