about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMateusz Kowalczyk <mk440@bath.ac.uk>2014-09-27 01:07:50 +0100
committerMateusz Kowalczyk <mk440@bath.ac.uk>2014-09-27 01:07:50 +0100
commit3a299822870b4a422e7ed743b803c2c323212f45 (patch)
tree4fc5f81ceaf2840054bfea438b9fe0dc639e89d5 /pkgs/applications/networking
parent859918d235f39747a4eed36192105b69bab216d6 (diff)
parenteb3d744af94ff028a5c3fa66ca9d4fe99a455119 (diff)
downloadnixlib-3a299822870b4a422e7ed743b803c2c323212f45.tar
nixlib-3a299822870b4a422e7ed743b803c2c323212f45.tar.gz
nixlib-3a299822870b4a422e7ed743b803c2c323212f45.tar.bz2
nixlib-3a299822870b4a422e7ed743b803c2c323212f45.tar.lz
nixlib-3a299822870b4a422e7ed743b803c2c323212f45.tar.xz
nixlib-3a299822870b4a422e7ed743b803c2c323212f45.tar.zst
nixlib-3a299822870b4a422e7ed743b803c2c323212f45.zip
Merge pull request #4267 from nathanielbaxter/dev/qbittorrent_update
qbittorrent: Bump version to 3.1.10 + Fixup meta.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 0ba160c8a917..b896cc8e05bc 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -2,11 +2,11 @@
 , pkgconfig }:
 
 stdenv.mkDerivation rec {
-  name = "qbittorrent-3.1.3";
+  name = "qbittorrent-3.1.10";
 
   src = fetchurl {
     url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
-    sha256 = "16m3l8qjcj63brzrdn82cbijvz8fcxfgpibi4g5g6sbissjkwsww";
+    sha256 = "0xhqli191r5v9b5x6wj1wsjlj6svf6ldgzl7jza39q3ipr5c2pg6";
   };
 
   buildInputs = [ qt4 which dbus_libs boost libtorrentRasterbar
@@ -17,9 +17,11 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Free Software alternative to µtorrent";
     homepage = http://www.qbittorrent.org/;
-    maintainers = with stdenv.lib.maintainers; [ viric ];
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ viric ];
+    platforms = platforms.linux;
   };
 }