2016-08-16 13:51:21 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
2018-02-24 18:23:58 -08:00
|
|
|
, gst_all_1, glib-networking, gobjectIntrospection
|
2013-02-26 10:42:04 -08:00
|
|
|
}:
|
|
|
|
|
2016-02-19 04:12:11 -08:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2013-02-26 10:42:04 -08:00
|
|
|
name = "mopidy-${version}";
|
|
|
|
|
2017-01-10 21:17:03 -08:00
|
|
|
version = "2.1.0";
|
2013-02-26 10:42:04 -08:00
|
|
|
|
2016-04-12 05:04:16 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mopidy";
|
|
|
|
repo = "mopidy";
|
|
|
|
rev = "v${version}";
|
2017-01-10 21:17:03 -08:00
|
|
|
sha256 = "0krq5fbscqxayyc4vxai7iwxm2kdbgs5jicrdb013v04phw2za06";
|
2013-02-26 10:42:04 -08:00
|
|
|
};
|
|
|
|
|
2016-04-12 05:04:16 -07:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = with gst_all_1; [
|
2017-03-01 02:20:14 -08:00
|
|
|
gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad
|
2018-02-24 18:23:58 -08:00
|
|
|
glib-networking gobjectIntrospection
|
2016-01-07 06:43:09 -08:00
|
|
|
];
|
|
|
|
|
2013-02-26 10:42:04 -08:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
2018-02-23 10:36:52 -08:00
|
|
|
gst-python pygobject3 pykka tornado requests
|
|
|
|
] ++ stdenv.lib.optional (!stdenv.isDarwin) dbus-python;
|
2013-02-26 10:42:04 -08:00
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-01-07 06:43:09 -08:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
2013-02-26 10:42:04 -08:00
|
|
|
'';
|
|
|
|
|
2014-07-12 00:33:53 -07:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://www.mopidy.com/;
|
2013-02-26 10:42:04 -08:00
|
|
|
description = ''
|
2014-07-12 00:33:53 -07:00
|
|
|
An extensible music server that plays music from local disk, Spotify,
|
2014-11-11 05:20:43 -08:00
|
|
|
SoundCloud, Google Play Music, and more
|
2013-02-26 10:42:04 -08:00
|
|
|
'';
|
2014-07-12 00:33:53 -07:00
|
|
|
license = licenses.asl20;
|
2016-01-20 09:10:35 -08:00
|
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
2013-11-04 15:04:36 -08:00
|
|
|
hydraPlatforms = [];
|
2013-02-26 10:42:04 -08:00
|
|
|
};
|
|
|
|
}
|