mopidy: 1.1.2 -> 2.0.0
This commit is contained in:
parent
5e17562726
commit
b4aa799545
@ -1,23 +1,28 @@
|
|||||||
{ stdenv, fetchurl, pythonPackages, pygobject, gst_python, wrapGAppsHook
|
{ stdenv, fetchFromGitHub, pythonPackages, pygobject3, wrapGAppsHook
|
||||||
, glib_networking, gst_plugins_good, gst_plugins_base, gst_plugins_ugly
|
, gst_all_1, glib_networking, gobjectIntrospection
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "mopidy-${version}";
|
name = "mopidy-${version}";
|
||||||
|
|
||||||
version = "1.1.2";
|
version = "2.0.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz";
|
owner = "mopidy";
|
||||||
sha256 = "1vn4knpmnp3krmn627iv1r7xa50zl816ac6b24b8ph50cq2sqjfv";
|
repo = "mopidy";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "06f1y87dqc7p6kq5npmg3ki8x4iacyjzd7nq7188x20y2zglrjbm";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
nativeBuildInputs = [ wrapGAppsHook ];
|
||||||
wrapGAppsHook gst_plugins_base gst_plugins_good gst_plugins_ugly glib_networking
|
|
||||||
|
buildInputs = with gst_all_1; [
|
||||||
|
gst-plugins-base gst-plugins-good gst-plugins-ugly
|
||||||
|
glib_networking gobjectIntrospection
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
gst_python pygobject pykka tornado requests2
|
gst-python pygobject3 pykka tornado requests2
|
||||||
];
|
];
|
||||||
|
|
||||||
# There are no tests
|
# There are no tests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user