nixpkgs/pkgs/applications/audio/mopidy/default.nix

38 lines
981 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages, pygobject, gst_python
, gst_plugins_good, gst_plugins_base
}:
pythonPackages.buildPythonPackage rec {
name = "mopidy-${version}";
2015-04-06 08:18:09 +01:00
version = "1.0.0";
src = fetchurl {
url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz";
2015-04-06 08:18:09 +01:00
sha256 = "15cz6mqw8ihqxhlssnbbssl3bi1xxbmq7krf3hv0zmmdj73ilsd6";
};
propagatedBuildInputs = with pythonPackages; [
2014-07-28 18:49:10 +01:00
gst_python pygobject pykka tornado gst_plugins_base gst_plugins_good
];
# There are no tests
doCheck = false;
postInstall = ''
wrapProgram $out/bin/mopidy \
--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,
2014-11-11 13:20:43 +00:00
SoundCloud, Google Play Music, and more
'';
license = licenses.asl20;
maintainers = [ maintainers.rickynils ];
hydraPlatforms = [];
};
}