2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-03-03 13:00:41 +00:00
|
|
|
, fetchFromGitHub
|
2020-07-29 16:33:39 +00:00
|
|
|
, nix-update-script
|
2019-03-03 13:00:41 +00:00
|
|
|
, cmake
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-10-20 03:12:53 +00:00
|
|
|
, vala_0_40
|
2019-03-03 13:00:41 +00:00
|
|
|
, pantheon
|
|
|
|
, curl
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, libb64
|
|
|
|
, libevent
|
|
|
|
, libgee
|
|
|
|
, libnatpmp
|
|
|
|
, libunity
|
|
|
|
, miniupnpc
|
|
|
|
, openssl
|
2019-09-12 14:25:05 +00:00
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2019-03-03 13:00:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "torrential";
|
|
|
|
version = "1.1.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "davidmhewitt";
|
|
|
|
repo = "torrential";
|
|
|
|
rev = version;
|
|
|
|
fetchSubmodules = true;
|
|
|
|
sha256 = "17aby0c17ybyzyzyc1cg1j6q1a186801fy84avlaxahqp7vdammx";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2019-10-20 03:12:53 +00:00
|
|
|
vala_0_40 # https://github.com/davidmhewitt/torrential/issues/135
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-03-03 13:00:41 +00:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
curl
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
libb64
|
|
|
|
libevent
|
|
|
|
libgee
|
|
|
|
libnatpmp
|
|
|
|
libunity
|
|
|
|
miniupnpc
|
|
|
|
openssl
|
|
|
|
pantheon.granite
|
|
|
|
];
|
|
|
|
|
2019-12-22 23:19:30 +00:00
|
|
|
passthru = {
|
2020-07-29 16:33:39 +00:00
|
|
|
updateScript = nix-update-script {
|
2019-12-22 23:19:30 +00:00
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-03-03 13:00:41 +00:00
|
|
|
description = "Download torrents in style with this speedy, minimalist torrent client for elementary OS";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/davidmhewitt/torrential";
|
2020-05-08 07:08:53 +00:00
|
|
|
maintainers = with maintainers; [ xiorcale ] ++ pantheon.maintainers;
|
2019-03-03 13:00:41 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|