mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
libhttpseverywhere: fix build
This commit is contained in:
parent
9696e36d9d
commit
8d078e5000
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, meson, ninja, makeFontsConf
|
||||
{ stdenv, fetchurl, pkgconfig, meson, ninja, makeFontsConf, vala_0_40
|
||||
, gnome3, glib, json-glib, libarchive, libsoup, gobjectIntrospection }:
|
||||
|
||||
let
|
||||
|
@ -12,7 +12,8 @@ in stdenv.mkDerivation rec {
|
|||
sha256 = "1jmn6i4vsm89q1axlq4ajqkzqmlmjaml9xhw3h9jnal46db6y00w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gnome3.vala gobjectIntrospection meson ninja pkgconfig ];
|
||||
# Broken with newest Vala https://gitlab.gnome.org/GNOME/libhttpseverywhere/issues/1
|
||||
nativeBuildInputs = [ vala_0_40 gobjectIntrospection meson ninja pkgconfig ];
|
||||
buildInputs = [ glib gnome3.libgee json-glib libsoup libarchive ];
|
||||
|
||||
mesonFlags = [ "-Denable_valadoc=true" ];
|
||||
|
|
Loading…
Reference in a new issue