Add mopidy-mpd
This commit is contained in:
parent
7f9dae1758
commit
ed42095b6b
2 changed files with 25 additions and 0 deletions
|
@ -32,6 +32,8 @@ self: super:
|
||||||
|
|
||||||
reaper-samae = super.callPackage ./reaper {};
|
reaper-samae = super.callPackage ./reaper {};
|
||||||
|
|
||||||
|
mopidy-mpd-samae = super.callPackage ./mopidy-mpd {};
|
||||||
|
|
||||||
scientifica-font = super.callPackage ./scientifica-font {};
|
scientifica-font = super.callPackage ./scientifica-font {};
|
||||||
curie-font = super.callPackage ./curie-font {};
|
curie-font = super.callPackage ./curie-font {};
|
||||||
victor-mono = super.callPackage ./victor-mono {};
|
victor-mono = super.callPackage ./victor-mono {};
|
||||||
|
|
23
pkgs/mopidy-mpd/default.nix
Normal file
23
pkgs/mopidy-mpd/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue