mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +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
|
||||
, 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
|
||||
, gst_python, gst_plugins_base, gst_plugins_good, gst_ffmpeg
|
||||
, enableBonjour ? false, avahi ? null
|
||||
@ -70,7 +70,7 @@ buildPythonPackage rec {
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig pyrex096 ffmpeg boost glib pygobject gtk2 webkitgtk2 libsoup
|
||||
pygtk taglib gsettings_desktop_schemas
|
||||
pygtk taglib gsettings_desktop_schemas sqlite
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -6525,7 +6525,7 @@ let
|
||||
minmay = callPackage ../development/libraries/minmay { };
|
||||
|
||||
miro = callPackage ../applications/video/miro {
|
||||
inherit (pythonPackages) pywebkitgtk pysqlite pycurl mutagen;
|
||||
inherit (pythonPackages) pywebkitgtk pycurl mutagen;
|
||||
avahi = avahi.override {
|
||||
withLibdnssdCompat = true;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user