about summary refs log tree commit diff
path: root/pkgs/tools/audio/tidal-dl
diff options
context:
space:
mode:
authorGabriel Fontes <hi@m7.rs>2023-05-30 19:42:01 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-06-02 19:13:06 +0000
commita88e75b4fdb229743b29adb400d25a12ea285dbf (patch)
tree2005f9a80c77f1df5397ab99b25b5c6c78c24cfd /pkgs/tools/audio/tidal-dl
parent745c8cc765898eee3672ba07cb5ffc8cec535e64 (diff)
tidal-dl: init at 2022.10.31.1
Diffstat (limited to 'pkgs/tools/audio/tidal-dl')
-rw-r--r--pkgs/tools/audio/tidal-dl/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/audio/tidal-dl/default.nix b/pkgs/tools/audio/tidal-dl/default.nix
new file mode 100644
index 0000000000000..2e8ba35e8ce43
--- /dev/null
+++ b/pkgs/tools/audio/tidal-dl/default.nix
@@ -0,0 +1,25 @@
+{ 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";
+    description = "An application that lets you download videos and tracks from Tidal";
+    license = lib.licenses.asl20;
+    maintainers = [ lib.maintainers.misterio77 ];
+    platforms = lib.platforms.all;
+  };
+}