mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
|
|
, gst_all_1, glib_networking, gobjectIntrospection
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-${version}";
|
|
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mopidy";
|
|
repo = "mopidy";
|
|
rev = "v${version}";
|
|
sha256 = "15i17rj2bh2kda6d6rwcjhs2m3nfsrcyq3lj9vbgmacg0cdb22pp";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
buildInputs = with gst_all_1; [
|
|
gst-plugins-base gst-plugins-good gst-plugins-ugly
|
|
glib_networking gobjectIntrospection
|
|
];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
gst-python pygobject3 pykka tornado requests2 dbus-python
|
|
];
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.mopidy.com/;
|
|
description = ''
|
|
An extensible music server that plays music from local disk, Spotify,
|
|
SoundCloud, Google Play Music, and more
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rickynils fpletz ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|