Merge pull request #4267 from nathanielbaxter/dev/qbittorrent_update

qbittorrent: Bump version to 3.1.10 + Fixup meta.
This commit is contained in:
Mateusz Kowalczyk 2014-09-27 01:07:50 +01:00
commit 3a29982287

View File

@ -2,11 +2,11 @@
, pkgconfig }: , pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "qbittorrent-3.1.3"; name = "qbittorrent-3.1.10";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz"; url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
sha256 = "16m3l8qjcj63brzrdn82cbijvz8fcxfgpibi4g5g6sbissjkwsww"; sha256 = "0xhqli191r5v9b5x6wj1wsjlj6svf6ldgzl7jza39q3ipr5c2pg6";
}; };
buildInputs = [ qt4 which dbus_libs boost libtorrentRasterbar buildInputs = [ qt4 which dbus_libs boost libtorrentRasterbar
@ -17,9 +17,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = with stdenv.lib; {
description = "Free Software alternative to µtorrent"; description = "Free Software alternative to µtorrent";
homepage = http://www.qbittorrent.org/; homepage = http://www.qbittorrent.org/;
maintainers = with stdenv.lib.maintainers; [ viric ]; license = licenses.gpl2;
maintainers = with maintainers; [ viric ];
platforms = platforms.linux;
}; };
} }