1
0
Fork 1
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:
Jan Tojnar 2018-09-05 13:53:24 +02:00
parent 9696e36d9d
commit 8d078e5000
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -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" ];