New package: mopidy-moped, a web client for the mopidy music player daemon

This commit is contained in:
Rickard Nilsson 2014-07-28 19:51:08 +02:00
parent 5b3f2e9a5e
commit ccc22bb662
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pythonPackages, mopidy }:
pythonPackages.buildPythonPackage rec {
name = "mopidy-moped-${version}";
version = "0.3.1";
src = fetchurl {
url = "https://github.com/martijnboland/moped/archive/v${version}.tar.gz";
sha256 = "0sjp8vr4yfyjx233gamhg0p67zjnlpc9yq3szbw897igsh23j2yr";
};
propagatedBuildInputs = [ mopidy ];
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/martijnboland/moped;
description = "A web client for Mopidy";
license = licenses.mit;
maintainers = [ maintainers.rickynils ];
hydraPlatforms = [];
};
}

View File

@ -9178,6 +9178,8 @@ let
mopidy-spotify = callPackage ../applications/audio/mopidy-spotify { };
mopidy-moped = callPackage ../applications/audio/mopidy-moped { };
mozilla = callPackage ../applications/networking/browsers/mozilla {
inherit (gnome) libIDL;
};