2016-01-07 15:43:09 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages, pygobject, gst_python, wrapGAppsHook
|
|
|
|
, glib_networking, gst_plugins_good, gst_plugins_base, gst_plugins_ugly
|
2013-02-26 19:42:04 +01:00
|
|
|
}:
|
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2013-02-26 19:42:04 +01:00
|
|
|
name = "mopidy-${version}";
|
|
|
|
|
2016-01-20 18:10:35 +01:00
|
|
|
version = "1.1.2";
|
2013-02-26 19:42:04 +01:00
|
|
|
|
2013-07-19 08:30:04 +02:00
|
|
|
src = fetchurl {
|
2013-07-04 01:21:27 +02:00
|
|
|
url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz";
|
2016-01-20 18:10:35 +01:00
|
|
|
sha256 = "1vn4knpmnp3krmn627iv1r7xa50zl816ac6b24b8ph50cq2sqjfv";
|
2013-02-26 19:42:04 +01:00
|
|
|
};
|
|
|
|
|
2016-01-07 15:43:09 +01:00
|
|
|
buildInputs = [
|
|
|
|
wrapGAppsHook gst_plugins_base gst_plugins_good gst_plugins_ugly glib_networking
|
|
|
|
];
|
|
|
|
|
2013-02-26 19:42:04 +01:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2016-01-07 15:43:09 +01:00
|
|
|
gst_python pygobject pykka tornado requests2
|
2013-02-26 19:42:04 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-01-07 15:43:09 +01:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
2013-02-26 19:42:04 +01:00
|
|
|
'';
|
|
|
|
|
2014-07-12 09:33:53 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-26 19:42:04 +01:00
|
|
|
homepage = http://www.mopidy.com/;
|
|
|
|
description = ''
|
2014-07-12 09:33:53 +02:00
|
|
|
An extensible music server that plays music from local disk, Spotify,
|
2014-11-11 14:20:43 +01:00
|
|
|
SoundCloud, Google Play Music, and more
|
2013-02-26 19:42:04 +01:00
|
|
|
'';
|
2014-07-12 09:33:53 +02:00
|
|
|
license = licenses.asl20;
|
2016-01-20 18:10:35 +01:00
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
2013-11-05 00:04:36 +01:00
|
|
|
hydraPlatforms = [];
|
2013-02-26 19:42:04 +01:00
|
|
|
};
|
|
|
|
}
|