mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
Merge pull request #5201 from geerds/pidgin-window-merge
Add package pidgin-window-merge
This commit is contained in:
commit
ebc96e4b0a
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -10492,6 +10492,8 @@ let
|
|||||||
|
|
||||||
pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { };
|
pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { };
|
||||||
|
|
||||||
|
pidginwindowmerge = callPackage ../applications/networking/instant-messengers/pidgin-plugins/window-merge { };
|
||||||
|
|
||||||
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { };
|
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { };
|
||||||
|
|
||||||
pinfo = callPackage ../applications/misc/pinfo { };
|
pinfo = callPackage ../applications/misc/pinfo { };
|
||||||
|
Loading…
Reference in New Issue
Block a user