Unverified Commit 961427a5 authored by John Titor's avatar John Titor
Browse files

tribler: add changelog, cleanup

parent f8c1e5bd
Loading
Loading
Loading
Loading
+68 −64
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchurl
, fetchPypi
, python3
, makeWrapper
, libtorrent-rasterbar-1_2_x
, qt5
, nix-update-script
{
  lib,
  stdenv,
  fetchurl,
  fetchPypi,
  python3,
  makeWrapper,
  libtorrent-rasterbar-1_2_x,
  qt5,
  nix-update-script,
}:

let
@@ -29,13 +30,11 @@ stdenv.mkDerivation (finalAttrs: {
    qt5.wrapQtAppsHook
  ];

  buildInputs = [
    python3.pkgs.python
  ];
  buildInputs = [ python3.pkgs.python ];

  pythonPath = [
    libtorrent
  ] ++ (with python3.pkgs; [
  pythonPath =
    [ libtorrent ]
    ++ (with python3.pkgs; [
      # requirements-core.txt
      aiohttp
      aiohttp-apispec
@@ -109,12 +108,17 @@ stdenv.mkDerivation (finalAttrs: {

  passthru.updateScript = nix-update-script { };

  meta = with lib; {
  meta = {
    description = "Decentralised P2P filesharing client based on the Bittorrent protocol";
    mainProgram = "tribler";
    homepage = "https://www.tribler.org/";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ xvapx viric mkg20001 ];
    platforms = platforms.linux;
    changelog = "https://github.com/Tribler/tribler/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.lgpl21Plus;
    maintainers = with lib.maintainers; [
      xvapx
      viric
      mkg20001
    ];
    platforms = lib.platforms.linux;
  };
})