biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / instant-messengers / pidgin / pidgin-plugins / window-merge / default.nix
blobc5437e965ed87d9a9fd40d2ab1673d4ab5aba653
1 { lib, stdenv, fetchurl, pidgin } :
3 stdenv.mkDerivation rec {
4   pname = "pidgin-window-merge";
5   version = "0.3";
7   src = fetchurl {
8     url = "https://github.com/downloads/dm0-/window_merge/window_merge-${version}.tar.gz";
9     sha256 = "0cb5rvi7jqvm345g9mlm4wpq0240kcybv81jpw5wlx7hz0lwi478";
10   };
12   buildInputs = [ pidgin ];
14   meta = with lib; {
15     homepage = "https://github.com/dm0-/window_merge";
16     description = "Pidgin plugin that merges the Buddy List window with a conversation window";
17     license = licenses.gpl3;
18     platforms = platforms.linux;
19     maintainers = with maintainers; [ ];
20   };