From d5604d07c23b05801402b3fcd37fcb20bb48e55a Mon Sep 17 00:00:00 2001 From: Nathaniel Baxter Date: Thu, 25 Sep 2014 11:09:55 +1000 Subject: [PATCH 1/2] qbittorrent: Bump version to 3.1.10. --- pkgs/applications/networking/p2p/qbittorrent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 0ba160c8a91..d0fe55ee46a 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 From eb3d744af94ff028a5c3fa66ca9d4fe99a455119 Mon Sep 17 00:00:00 2001 From: Nathaniel Baxter Date: Thu, 25 Sep 2014 12:49:14 +1000 Subject: [PATCH 2/2] qbittorrent: Fixup meta data. --- pkgs/applications/networking/p2p/qbittorrent/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index d0fe55ee46a..b896cc8e05b 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -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; }; }