glib-networking: add python3 for install script

Meson no longer propagates it so we need to re-add it.
This commit is contained in:
Jan Tojnar 2018-09-03 20:11:20 +02:00
parent 340dd80175
commit 8a923c9e50
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, meson, ninja, pkgconfig, glib, gettext, gnutls, p11-kit, libproxy, gnome3
{ stdenv, fetchurl, fetchpatch, meson, ninja, pkgconfig, glib, gettext, python3, gnutls, p11-kit, libproxy, gnome3
, gsettings-desktop-schemas }:
let
@ -30,7 +30,10 @@ stdenv.mkDerivation rec {
patchShebangs meson_post_install.py
'';
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
nativeBuildInputs = [
meson ninja pkgconfig gettext
python3 # install_script
];
propagatedBuildInputs = [ glib gnutls p11-kit libproxy gsettings-desktop-schemas ];
doCheck = false; # tests need to access the certificates (among other things)