Add mopidy-mpd

This commit is contained in:
Martin Potier 2020-02-24 14:36:11 +02:00
parent 7f9dae1758
commit ed42095b6b
No known key found for this signature in database
GPG Key ID: D4DD957DBA4AD89E
2 changed files with 25 additions and 0 deletions

View File

@ -32,6 +32,8 @@ self: super:
reaper-samae = super.callPackage ./reaper {};
mopidy-mpd-samae = super.callPackage ./mopidy-mpd {};
scientifica-font = super.callPackage ./scientifica-font {};
curie-font = super.callPackage ./curie-font {};
victor-mono = super.callPackage ./victor-mono {};

View File

@ -0,0 +1,23 @@
{ stdenv, python3Packages, mopidy }:
python3Packages.buildPythonApplication rec {
pname = "Mopidy-MPD";
version = "3.0.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0prjli4352521igcsfcgmk97jmzgbfy4ik8hnli37wgvv252wiac";
};
propagatedBuildInputs = [mopidy];
# no tests implemented
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/mopidy/mopidy-mpd;
description = "Mopidy extension for controlling playback from MPD clients";
license = licenses.asl20;
maintainers = [ maintainers.jpotier ];
};
}