gnome3.swell-foop: fix build

This commit is contained in:
Jan Tojnar 2018-03-15 01:42:20 +01:00
parent d1dcc9efc7
commit dd791a4281
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,24 +1,31 @@
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, dconf { stdenv, fetchurl, meson, ninja, pkgconfig, vala, glib, gtk3, gnome3, desktop-file-utils
, clutter, clutter-gtk, intltool, itstool, libxml2, wrapGAppsHook }: , clutter, clutter-gtk, gettext, itstool, libxml2, wrapGAppsHook }:
stdenv.mkDerivation rec { let
name = "swell-foop-${version}"; pname = "swell-foop";
version = "3.28.0"; version = "3.28.0";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/swell-foop/${gnome3.versionBranch version}/${name}.tar.xz"; url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "1yjmg6sgi7mvp10fsqlkqshajmh8kgdmg6vyj5r8y48pv2ihfk64"; sha256 = "1yjmg6sgi7mvp10fsqlkqshajmh8kgdmg6vyj5r8y48pv2ihfk64";
}; };
passthru = { passthru = {
updateScript = gnome3.updateScript { packageName = "swell-foop"; attrPath = "gnome3.swell-foop"; }; updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ meson ninja vala pkgconfig wrapGAppsHook itstool gettext libxml2 desktop-file-utils ];
buildInputs = [ gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg buildInputs = [ glib gtk3 gnome3.defaultIconTheme clutter clutter-gtk ];
dconf wrapGAppsHook itstool intltool clutter clutter-gtk libxml2 ];
enableParallelBuilding = true; postPatch = ''
chmod +x meson_post_install.py # patchShebangs requires executable file
patchShebangs meson_post_install.py
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Swell%20Foop; homepage = https://wiki.gnome.org/Apps/Swell%20Foop;