mpvc: init at unstable-2017-03-18 (#24037)

* mpvc: init at unstable-2017-03-18

* mpvc: simplify build

* mpvc: add maintainer
This commit is contained in:
Nathan Isom
2017-03-19 18:17:52 +01:00
committed by Jörg Thalheim
parent 6653d9f812
commit b82f3f6943
3 changed files with 32 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{ stdenv, socat, fetchFromGitHub, makeWrapper }:
stdenv.mkDerivation rec {
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;
};
}