From 4ba9aa074f4c47723ddf6975e1e97c309c7dffd2 Mon Sep 17 00:00:00 2001 From: Jascha Geerds Date: Tue, 2 Dec 2014 11:32:56 +0100 Subject: Add package pidgin-window-merge --- .../pidgin-plugins/window-merge/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/pidgin-plugins/window-merge/default.nix (limited to 'pkgs/applications') diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/window-merge/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/window-merge/default.nix new file mode 100644 index 000000000000..37b2a1f0c62d --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/window-merge/default.nix @@ -0,0 +1,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 ]; + }; +} -- cgit 1.4.1