mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
miro: Fix build by adding sqlite to buildInputs.
The dependency on sqlite was propagated through to miro by libsoup, but
with f570f97
, it's no longer propagated anymore so we need to pass it to
the miro derivation directly.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
947a4c582e
commit
dcbcc85fea
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchurl, python, buildPythonPackage, pythonPackages, pkgconfig
|
{ stdenv, fetchurl, python, buildPythonPackage, pythonPackages, pkgconfig
|
||||||
, pyrex096, ffmpeg, boost, glib, pygobject, gtk2, webkitgtk2, libsoup, pygtk
|
, pyrex096, ffmpeg, boost, glib, pygobject, gtk2, webkitgtk2, libsoup, pygtk
|
||||||
, taglib, pysqlite, pycurl, mutagen, pycairo, pythonDBus, pywebkitgtk
|
, taglib, sqlite, pycurl, mutagen, pycairo, pythonDBus, pywebkitgtk
|
||||||
, libtorrentRasterbar, glib_networking, gsettings_desktop_schemas
|
, libtorrentRasterbar, glib_networking, gsettings_desktop_schemas
|
||||||
, gst_python, gst_plugins_base, gst_plugins_good, gst_ffmpeg
|
, gst_python, gst_plugins_base, gst_plugins_good, gst_ffmpeg
|
||||||
, enableBonjour ? false, avahi ? null
|
, enableBonjour ? false, avahi ? null
|
||||||
@ -70,7 +70,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgconfig pyrex096 ffmpeg boost glib pygobject gtk2 webkitgtk2 libsoup
|
pkgconfig pyrex096 ffmpeg boost glib pygobject gtk2 webkitgtk2 libsoup
|
||||||
pygtk taglib gsettings_desktop_schemas
|
pygtk taglib gsettings_desktop_schemas sqlite
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -6525,7 +6525,7 @@ let
|
|||||||
minmay = callPackage ../development/libraries/minmay { };
|
minmay = callPackage ../development/libraries/minmay { };
|
||||||
|
|
||||||
miro = callPackage ../applications/video/miro {
|
miro = callPackage ../applications/video/miro {
|
||||||
inherit (pythonPackages) pywebkitgtk pysqlite pycurl mutagen;
|
inherit (pythonPackages) pywebkitgtk pycurl mutagen;
|
||||||
avahi = avahi.override {
|
avahi = avahi.override {
|
||||||
withLibdnssdCompat = true;
|
withLibdnssdCompat = true;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user