Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
793 B
Nix
Raw Normal View History

2024-11-29 11:49:44 +02:00
{
lib,
fetchFromGitHub,
qbittorrent,
guiSupport ? true,
2024-07-06 08:20:15 +01:00
}:
2024-11-29 11:49:44 +02:00
(qbittorrent.override { inherit guiSupport; }).overrideAttrs (old: rec {
pname = "qbittorrent-enhanced" + lib.optionalString (!guiSupport) "-nox";
version = "5.0.3.10";
2024-07-06 08:20:15 +01:00
src = fetchFromGitHub {
owner = "c0re100";
repo = "qBittorrent-Enhanced-Edition";
rev = "release-${version}";
hash = "sha256-efQFjdJeVMrPvCQ5aYtUb65hozKc73MnP0/Kheti9BI=";
2024-07-06 08:20:15 +01:00
};
2024-11-29 11:49:44 +02:00
meta = old.meta // {
2024-07-06 08:20:15 +01:00
description = "Unofficial enhanced version of qBittorrent, a BitTorrent client";
homepage = "https://github.com/c0re100/qBittorrent-Enhanced-Edition";
2024-11-29 11:49:44 +02:00
changelog = "https://github.com/c0re100/qBittorrent-Enhanced-Edition/blob/release-${version}/Changelog";
2024-07-06 08:20:15 +01:00
maintainers = with lib.maintainers; [ ByteSudoer ];
};
2024-11-29 11:49:44 +02:00
})