f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
26 lines
612 B
Nix
26 lines
612 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
, aigpy
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "tidal-dl";
|
|
version = "2022.10.31.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-b2AAsiI3n2/v6HC37fMI/d8UcxZxsWM+fnWvdajHrOg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aigpy ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/yaronzz/Tidal-Media-Downloader";
|
|
description = "Application that lets you download videos and tracks from Tidal";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.misterio77 ];
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "tidal-dl";
|
|
};
|
|
}
|