about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-05-08 23:49:01 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-05-08 23:59:42 +0200
commit08834b061ccc96659e5201c87db8dcfb1714f445 (patch)
tree7321950cb70c98bc4a4058deaef5c308eb07a1ad /pkgs/applications/networking
parent0008a4b6c467977469b9b3bdec15fcc580204145 (diff)
downloadnixlib-08834b061ccc96659e5201c87db8dcfb1714f445.tar
nixlib-08834b061ccc96659e5201c87db8dcfb1714f445.tar.gz
nixlib-08834b061ccc96659e5201c87db8dcfb1714f445.tar.bz2
nixlib-08834b061ccc96659e5201c87db8dcfb1714f445.tar.lz
nixlib-08834b061ccc96659e5201c87db8dcfb1714f445.tar.xz
nixlib-08834b061ccc96659e5201c87db8dcfb1714f445.tar.zst
nixlib-08834b061ccc96659e5201c87db8dcfb1714f445.zip
pidgin-sipe: fix build by updating
Also add platforms (linux).
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
index 9c787867e5a1..b387ed350af2 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
@@ -1,19 +1,20 @@
 { stdenv, fetchurl, pidgin, intltool, libxml2 }:
 
-let version = "1.12.0"; in
+let version = "1.18.1"; in
 
 stdenv.mkDerivation {
   name = "pidgin-sipe-${version}";
-  
+
   src = fetchurl {
     url = "mirror://sourceforge/sipe/pidgin-sipe-${version}.tar.gz";
-    sha256 = "12ki6n360v2ja961fzw4mwpgb8jdp9k21y5mbiab151867c862r6";
+    sha256 = "18ch7jpi7ki7xlpahi88xrnmnhc6dcq4hafm0z6d5nfjfp8ldal5";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "SIPE plugin for Pidgin IM";
     homepage = http://sipe.sourceforge.net/;
-    license = "GPLv2";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
   };
 
   postInstall = "find $out -ls; ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";