mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
Merge pull request #7311 from bdimcheff/add-purple-pidgin-pack
add package purple-pidgin-pack
This commit is contained in:
commit
c910d4df5c
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl, pidgin, intltool, python } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "purple-plugin-pack-2.7.0";
|
||||
src = fetchurl {
|
||||
url = "https://bitbucket.org/rekkanoryo/purple-plugin-pack/downloads/${name}.tar.bz2";
|
||||
sha256 = "0g5hmy7fwgjq59j52h9yps28jsjjrfkd4r18gyx6hfd3g3kzbg1b";
|
||||
};
|
||||
|
||||
buildInputs = [ pidgin intltool python ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://bitbucket.org/rekkanoryo/purple-plugin-pack;
|
||||
description = "Plugin pack for Pidgin 2.x";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainters = with maintainers; [ bdimcheff ];
|
||||
};
|
||||
}
|
|
@ -11543,6 +11543,8 @@ let
|
|||
|
||||
pidginwindowmerge = callPackage ../applications/networking/instant-messengers/pidgin-plugins/window-merge { };
|
||||
|
||||
purple-plugin-pack = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack { };
|
||||
|
||||
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { };
|
||||
|
||||
pinfo = callPackage ../applications/misc/pinfo { };
|
||||
|
|
Loading…
Reference in a new issue