2023-07-15 17:15:38 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchPypi
|
|
|
|
, aigpy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "tidal-dl";
|
|
|
|
version = "2022.10.31.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-b2AAsiI3n2/v6HC37fMI/d8UcxZxsWM+fnWvdajHrOg=";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ aigpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/yaronzz/Tidal-Media-Downloader";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Application that lets you download videos and tracks from Tidal";
|
2023-07-15 17:15:38 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = [ lib.maintainers.misterio77 ];
|
|
|
|
platforms = lib.platforms.all;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "tidal-dl";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
}
|