summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoreyjhbb@gmail.com <eyjhbb@gmail.com>2019-04-04 18:05:24 +0200
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-04-05 15:48:07 -0400
commit810df3f55c29e2379218bfaad3b6728096937f9b (patch)
tree95fd5235ff5b14341ac4bc0d5ff3e4bff40f3ad8 /pkgs
parentd956f2279b8ac02bd9e48cf2a09dcb66383ab6be (diff)
downloadnixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.tar
nixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.tar.gz
nixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.tar.bz2
nixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.tar.lz
nixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.tar.xz
nixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.tar.zst
nixpkgs-810df3f55c29e2379218bfaad3b6728096937f9b.zip
curseradio: init at 0.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/curseradio/default.nix36
-rw-r--r--pkgs/applications/audio/curseradio/mpv.patch11
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/applications/audio/curseradio/default.nix b/pkgs/applications/audio/curseradio/default.nix
new file mode 100644
index 00000000000..1dd5f9ee5eb
--- /dev/null
+++ b/pkgs/applications/audio/curseradio/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, substituteAll, python3Packages, mpv }:
+
+python3Packages.buildPythonApplication rec {
+  version = "0.2";
+  pname = "curseradio";
+
+  src = fetchFromGitHub {
+    owner = "chronitis";
+    repo = pname;
+    rev = "1bd4bd0faeec675e0647bac9a100b526cba19f8d";
+    sha256 = "11bf0jnj8h2fxhpdp498189r4s6b47vy4wripv0z4nx7lxajl88i";
+  };
+
+  propagatedBuildInputs = with python3Packages; [
+    requests
+    lxml
+    pyxdg
+  ];
+
+  patches = [
+    (substituteAll {
+      src = ./mpv.patch;
+      inherit mpv;
+    })
+  ];
+
+  # No tests
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Command line radio player";
+    homepage = "https://github.com/chronitis/curseradio";
+    license = licenses.mit;
+    maintainers = [ maintainers.eyjhb ];
+  };
+}
diff --git a/pkgs/applications/audio/curseradio/mpv.patch b/pkgs/applications/audio/curseradio/mpv.patch
new file mode 100644
index 00000000000..d085dc79109
--- /dev/null
+++ b/pkgs/applications/audio/curseradio/mpv.patch
@@ -0,0 +1,11 @@
+--- a/curseradio/curseradio.py
++++ b/curseradio/curseradio.py
+@@ -30,7 +30,7 @@ import re
+ 
+ CONFIG_DEFAULT = {
+     'opml': {'root': "http://opml.radiotime.com/"},
+-    'playback': {'command': '/usr/bin/mpv'},
++    'playback': {'command': '@mpv@/bin/mpv'},
+     'interface': {'keymap': 'default'},
+     'keymap.default': {
+         'up': 'KEY_UP',
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f20da89540d..028352a0d1d 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -16768,6 +16768,8 @@ in
 
   cuneiform = callPackage ../tools/graphics/cuneiform {};
 
+  curseradio = callPackage ../applications/audio/curseradio { };
+
   cutecom = libsForQt5.callPackage ../tools/misc/cutecom { };
 
   cutegram =