mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Use GNOME-enabled libsoup in Midori as the build fails otherwise
This commit is contained in:
parent
112aafccce
commit
b49fc96617
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, cmake, pkgconfig, intltool, vala, makeWrapper
|
{ stdenv, fetchurl, cmake, pkgconfig, intltool, vala, makeWrapper
|
||||||
, gtk3, webkitgtk, librsvg, libnotify, sqlite
|
, gtk3, webkitgtk, librsvg, libnotify, sqlite
|
||||||
, glib_networking, gsettings_desktop_schemas
|
, glib_networking, gsettings_desktop_schemas, libsoup
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cmake pkgconfig intltool vala makeWrapper
|
cmake pkgconfig intltool vala makeWrapper
|
||||||
webkitgtk librsvg libnotify sqlite
|
webkitgtk librsvg libnotify sqlite
|
||||||
|
(libsoup.override {gnomeSupport = true;})
|
||||||
];
|
];
|
||||||
|
|
||||||
cmakeFlags = ''
|
cmakeFlags = ''
|
||||||
|
|
Loading…
Reference in a new issue