mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 20:38:30 +00:00
qbittorrent-enhanced: init at 4.6.5.10
This commit is contained in:
parent
30a4d0f448
commit
bf0b7d6d2d
48
pkgs/by-name/qb/qbittorrent-enhanced/package.nix
Normal file
48
pkgs/by-name/qb/qbittorrent-enhanced/package.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, boost
|
||||
, libtorrent-rasterbar
|
||||
, openssl
|
||||
, qt5
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qbittorrent-enhanced";
|
||||
version = "4.6.5.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "c0re100";
|
||||
repo = "qBittorrent-Enhanced-Edition";
|
||||
rev = "release-${version}";
|
||||
hash = "sha256-Yy0DUTz1lWkseh9x1xnHJCI89BKqi/D7zUn/S+qC+kM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
cmake
|
||||
qt5.wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl.dev
|
||||
boost
|
||||
zlib
|
||||
libtorrent-rasterbar
|
||||
qt5.qtbase
|
||||
qt5.qttools
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Unofficial enhanced version of qBittorrent, a BitTorrent client";
|
||||
homepage = "https://github.com/c0re100/qBittorrent-Enhanced-Edition";
|
||||
changelog = "https://github.com/c0re100/qBittorrent-Enhanced-Edition/blob/${src.rev}/Changelog";
|
||||
license = with lib.licenses; [ gpl2Only gpl3Only ];
|
||||
maintainers = with lib.maintainers; [ ByteSudoer ];
|
||||
mainProgram = "qBittorrent-enhanced";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user