summary refs log tree commit diff
path: root/pkgs/applications/misc/mpvc/default.nix
blob: 35de284c0baa76f27cea2974f9f269b04cf2e9ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, socat, fetchFromGitHub, makeWrapper }:

stdenv.mkDerivation {
  name = "mpvc-unstable-2017-03-18";

  src = fetchFromGitHub {
    owner = "wildefyr";
    repo = "mpvc";
    rev = "aea5c661455248cde7ac9ddba5f63cc790d26512";
    sha256 = "0qiyvb3ck1wyd3izajwvlq4bwgsbq7x8ya3fgi5i0g2qr39a1qml";
  };

  makeFlags = [ "PREFIX=$(out)" ];
  installFlags = [ "PREFIX=$(out)" ];

  postInstall = ''
    wrapProgram $out/bin/mpvc --prefix PATH : "${socat}/bin/"
  '';

  buildInputs = [ socat makeWrapper ];

  meta = with stdenv.lib; {
    description = "A mpc-like control interface for mpv";
    homepage = https://github.com/wildefyr/mpvc;
    license = licenses.mit;
    maintainers = [ maintainers.neeasade ];
    platforms = platforms.linux;
  };
}