summary refs log tree commit diff
path: root/pkgs/applications/audio/deadbeef
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-06-12 14:38:48 +0200
committerJan Tojnar <jtojnar@gmail.com>2019-06-14 10:14:12 +0200
commitc21c6fcd7a14363849880b66f036047ea07b1db6 (patch)
tree5e86b6a5373e1c359d04a1fe836ef3391dbc0569 /pkgs/applications/audio/deadbeef
parentfc978b4302151dc843cc851cb19fe3970a3f3ef7 (diff)
downloadnixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.tar
nixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.tar.gz
nixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.tar.bz2
nixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.tar.lz
nixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.tar.xz
nixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.tar.zst
nixpkgs-c21c6fcd7a14363849880b66f036047ea07b1db6.zip
deadbeefPlugins.lyricbar: init at unstable-2019-01-29
Diffstat (limited to 'pkgs/applications/audio/deadbeef')
-rw-r--r--pkgs/applications/audio/deadbeef/plugins/lyricbar.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix b/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix
new file mode 100644
index 00000000000..97e054bda64
--- /dev/null
+++ b/pkgs/applications/audio/deadbeef/plugins/lyricbar.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, pkgconfig, deadbeef, gtkmm3, libxmlxx3 }:
+
+stdenv.mkDerivation rec {
+  pname = "deadbeef-lyricbar-plugin";
+  version = "unstable-2019-01-29";
+
+  src = fetchFromGitHub {
+    owner = "C0rn3j";
+    repo = "deadbeef-lyricbar";
+    rev = "8f99b92ef827c451c43fc7dff38ae4f15c355e8e";
+    sha256 = "108hx5530f4xm8p9m2bk79nq7jkhcj39ad3vmxb2y6h6l2zv5kwl";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ deadbeef gtkmm3 libxmlxx3 ];
+
+  buildFlags = [ "gtk3" ];
+
+  meta = with stdenv.lib; {
+    description = "Plugin for DeaDBeeF audio player that fetches and shows the song’s lyrics";
+    homepage = "https://github.com/C0rn3j/deadbeef-lyricbar";
+    license = licenses.mit;
+    maintainers = [ maintainers.jtojnar ];
+    platforms = platforms.linux;
+  };
+}