summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorBrandon Dimcheff <bdimchef-git@wieldim.com>2015-04-10 15:43:29 -0400
committerBrandon Dimcheff <bdimchef-git@wieldim.com>2015-04-10 15:43:29 -0400
commitb539f864567686dd3a529fda2c7823193efed3dc (patch)
treeeb6c438e54f8fff69a5969d09bf770cf430d66ad /pkgs/applications/networking
parent4e51a466bdfa260d15fbaafe52cdccf5280f13d1 (diff)
downloadnixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.tar
nixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.tar.gz
nixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.tar.bz2
nixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.tar.lz
nixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.tar.xz
nixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.tar.zst
nixpkgs-b539f864567686dd3a529fda2c7823193efed3dc.zip
add package purple-pidgin-pack
This is 50ish plugins for pidgin.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack/default.nix
new file mode 100644
index 00000000000..149f62bb981
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack/default.nix
@@ -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 ];
+  };
+}