gnome3.gnome-calculator: 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 21:14:58 +02:00
parent 804a26e6b7
commit bf38aea59b
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,5 +1,5 @@
{ stdenv, meson, ninja, vala, gettext, itstool, fetchurl, pkgconfig, libxml2 { stdenv, meson, ninja, vala, gettext, itstool, fetchurl, pkgconfig, libxml2
, gtk3, glib, gtksourceview3, wrapGAppsHook, gobjectIntrospection , gtk3, glib, gtksourceview3, wrapGAppsHook, gobjectIntrospection, python3
, gnome3, mpfr, gmp, libsoup, libmpc }: , gnome3, mpfr, gmp, libsoup, libmpc }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
meson ninja pkgconfig vala gettext itstool wrapGAppsHook meson ninja pkgconfig vala gettext itstool wrapGAppsHook python3
gobjectIntrospection # for finding vapi files gobjectIntrospection # for finding vapi files
]; ];