qbittorrent: 4.5.4 -> 4.5.5

This commit is contained in:
kashw2 2023-08-31 11:18:48 +10:00
parent b2bbab164d
commit 8013349ff9

View File

@ -11,13 +11,13 @@ assert trackerSearch -> (python3 != null);
mkDerivation rec {
pname = "qbittorrent" + lib.optionalString (!guiSupport) "-nox";
version = "4.5.4";
version = "4.5.5";
src = fetchFromGitHub {
owner = "qbittorrent";
repo = "qBittorrent";
rev = "release-${version}";
hash = "sha256-c/ZJ83kxxFo/iI7Tjo3ZY0/vmVanjoJXBOu8XTnFm+Q=";
hash = "sha256-rWv+KGw+3385GOKK4MvoSP0CepotUZELiDVFpyDf+9k=";
};
enableParallelBuilding = true;
@ -53,6 +53,6 @@ mkDerivation rec {
changelog = "https://github.com/qbittorrent/qBittorrent/blob/release-${version}/Changelog";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ Anton-Latukha ];
maintainers = with maintainers; [ Anton-Latukha kashw2 ];
};
}