summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix
diff options
context:
space:
mode:
authorSander van der Burg <s.vanderburg@tudelft.nl>2009-09-10 21:08:46 +0000
committerSander van der Burg <s.vanderburg@tudelft.nl>2009-09-10 21:08:46 +0000
commit2b0544f223022d902847466c959fe311c28606e3 (patch)
treef5e87c61aec608debb62b10e7c2482bb6bcd89bf /pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix
parentf0bc86533978b2a8a1078bffd2e8f843c09cceaa (diff)
downloadnixlib-2b0544f223022d902847466c959fe311c28606e3.tar
nixlib-2b0544f223022d902847466c959fe311c28606e3.tar.gz
nixlib-2b0544f223022d902847466c959fe311c28606e3.tar.bz2
nixlib-2b0544f223022d902847466c959fe311c28606e3.tar.lz
nixlib-2b0544f223022d902847466c959fe311c28606e3.tar.xz
nixlib-2b0544f223022d902847466c959fe311c28606e3.tar.zst
nixlib-2b0544f223022d902847466c959fe311c28606e3.zip
- Loudmouth uses OpenSSL now instead of GnuTLS, because I could not compile it with GnuTLS
- Upgraded KOffice to 2.0.2
- Upgraded KTorrent to 3.2.3
- Upgraded Amarok to 2.1.1


svn path=/nixpkgs/trunk/; revision=17038
Diffstat (limited to 'pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix')
-rw-r--r--pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix b/pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix
index 0a60fa82d29e..218e9f826929 100644
--- a/pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix
+++ b/pkgs/desktops/kde-4.3/extragear/ktorrent/default.nix
@@ -1,15 +1,21 @@
-{stdenv, fetchurl, cmake, qt4, perl, gmp, taglib, boost, gettext,
+{stdenv, fetchurl, lib, cmake, qt4, perl, gmp, taglib, boost, gettext,
  kdelibs, kdepimlibs, kdebase_workspace, automoc4, phonon, qca2}:
 
 stdenv.mkDerivation {
-  name = "ktorrent-3.2.1";
+  name = "ktorrent-3.2.3";
   src = fetchurl {
-    url = http://ktorrent.org/downloads/3.2.1/ktorrent-3.2.1.tar.bz2;
-    sha256 = "e37324519fdd04cad2a489fb772cbe628d8ff9f578e2bb913b18a1404dd7c4eb";
+    url = http://ktorrent.org/downloads/3.2.3/ktorrent-3.2.3.tar.bz2;
+    sha256 = "1fvxf4wq7w9wl58ms9jnx321b224wzcz685r8dnqw27cy15vxsqd";
   };
   includeAllQtDirs=true;
   CMAKE_PREFIX_PATH=kdepimlibs;
   cmakeFlags = "-DTASKMANAGER_INCLUDE_DIR=${kdebase_workspace}/include";
   buildInputs = [ cmake qt4 perl gmp taglib boost gettext stdenv.gcc.libc
                   kdelibs kdepimlibs kdebase_workspace automoc4 phonon qca2 ];
+  meta = {
+    description = "KDE integrated BitTorrent client";
+    license = "GPL";
+    homepage = http://ktorrent.org;
+    maintainers = [ lib.maintainers.sander ];
+  };
 }