about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins
diff options
context:
space:
mode:
authorDavid Guibert <david.guibert@gmail.com>2010-08-09 06:51:34 +0000
committerDavid Guibert <david.guibert@gmail.com>2010-08-09 06:51:34 +0000
commit3b6101cd7f3ed0a94586f710c8c834f4ef9ff7f6 (patch)
treefd43ab0a5d8fabe5bfe705501fa81d3b7466e656 /pkgs/applications/networking/instant-messengers/pidgin-plugins
parent9f77579f41d30eb7b1212f2bdd2c8a7d78fef2a6 (diff)
msn-pecan: an alternative MSN plugin for pidgin
svn path=/nixpkgs/trunk/; revision=23050
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/pidgin-plugins')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin-plugins/msn-pecan/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/msn-pecan/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/msn-pecan/default.nix
new file mode 100644
index 0000000000000..5e5cf311712a1
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/msn-pecan/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pidgin} :
+
+stdenv.mkDerivation {
+  name = "pidgin-msn-pecan-0.1.0";
+  src = fetchurl {
+    url = http://msn-pecan.googlecode.com/files/msn-pecan-0.1.0.tar.bz2;
+    sha256 = "06cgkdlv2brv2g5hpx8g8p6j296cnvd29l8fap30i1k0mznbjxf4";
+  };
+
+  meta = {
+    description = "Alternative MSN protocol plug-in for Pidgin IM.";
+    homepage = http://code.google.com/p/msn-pecan/;
+  };
+
+  makeFlags = "PURPLE_LIBDIR=lib PURPLE_DATADIR=share/data DESTDIR=$$out";
+  preInstall = "ensureDir \$out/share";
+  postInstall = "ln -s \$out/lib/purple-2 \$out/share/pidgin-msn-pecan";
+
+  buildInputs = [pidgin];
+}