gnome3.four-in-a-row: fix build

This commit is contained in:
Jan Tojnar 2018-03-14 01:41:23 +01:00
parent cc8403ffdc
commit e9d597e0df
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook { stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, intltool, itstool, libcanberra-gtk3, librsvg, libxml2 }: , gettext, itstool, libcanberra-gtk3, librsvg, libxml2 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "four-in-a-row-${version}"; name = "four-in-a-row-${version}";
@ -10,15 +10,15 @@ stdenv.mkDerivation rec {
sha256 = "1iszaay2r92swb0q67lmip6r1w3hw2dwmlgnz9v2h6blgdyncs4k"; sha256 = "1iszaay2r92swb0q67lmip6r1w3hw2dwmlgnz9v2h6blgdyncs4k";
}; };
passthru = { nativeBuildInputs = [ pkgconfig wrapGAppsHook gettext itstool libxml2 ];
updateScript = gnome3.updateScript { packageName = "four-in-a-row"; attrPath = "gnome3.four-in-a-row"; }; buildInputs = [ gtk3 libcanberra-gtk3 librsvg gnome3.defaultIconTheme ];
};
nativeBuildInputs = [ pkgconfig ]; passthru = {
buildInputs = [ updateScript = gnome3.updateScript {
gtk3 wrapGAppsHook intltool itstool libcanberra-gtk3 librsvg packageName = "four-in-a-row";
libxml2 gnome3.defaultIconTheme attrPath = "gnome3.four-in-a-row";
]; };
};
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Four-in-a-row; homepage = https://wiki.gnome.org/Apps/Four-in-a-row;