about summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorBrian McKenna <bmckenna@atlassian.com>2016-02-22 17:55:03 +1100
committerBrian McKenna <bmckenna@atlassian.com>2016-02-22 18:09:56 +1100
commit4ec4666762ba1fdc16a9935fdf072598ed905527 (patch)
tree934bda4bc79b7bbbfc31c3cc6aee1e7863f61a17 /pkgs/tools/audio
parent7fcecec58b4d386e74f20e30008dd86f4a39045f (diff)
playerctl: init at 0.4.2
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/playerctl/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/audio/playerctl/default.nix b/pkgs/tools/audio/playerctl/default.nix
new file mode 100644
index 0000000000000..0e2b11a1f06d6
--- /dev/null
+++ b/pkgs/tools/audio/playerctl/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool, which, gnome, glib,
+  pkgconfig, gobjectIntrospection }:
+
+stdenv.mkDerivation rec {
+  name = "playerctl";
+  version = "0.4.2";
+
+  src = fetchFromGitHub {
+    owner = "acrisci";
+    repo = "playerctl";
+    rev = "v${version}";
+    sha256 = "0dy6wc7qr00p53hlhpbg9x40w4ag95r2i7r1nsyb4ym3wzrvskzh";
+  };
+
+  buildInputs = [
+    which autoconf automake libtool gnome.gtkdoc glib pkgconfig
+    gobjectIntrospection
+  ];
+
+  preConfigure = "./autogen.sh";
+
+  meta = with stdenv.lib; {
+    description = "Command-line utility and library for controlling media players that implement MPRIS";
+    homepage = https://github.com/acrisci/playerctl;
+    license = licenses.lgpl3;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ puffnfresh ];
+  };
+}