gnome3.gnome-mines: 3.30.1.1 -> 3.32.0
This commit is contained in:
parent
61f3a2d5fc
commit
4ffd950f1d
|
@ -1,22 +1,25 @@
|
||||||
{ stdenv, fetchurl, meson, ninja, vala, gobject-introspection, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
{ stdenv, fetchurl, meson, ninja, vala, gobject-introspection, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||||
, librsvg, gettext, itstool, python3, libxml2, libgnome-games-support, libgee }:
|
, librsvg, gettext, itstool, python3, libxml2, libgnome-games-support, libgee, desktop-file-utils }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnome-mines-${version}";
|
name = "gnome-mines-${version}";
|
||||||
version = "3.30.1.1";
|
version = "3.32.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-mines/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/gnome-mines/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||||
sha256 = "08ddk400sg1g3q26gnm5mgv81vdqyix0yl7pd47p50vkc1w6f33z";
|
sha256 = "13ia8a7bmdnp1281lwp8nvdqqkclvg1n3pw4bbr2dgsrsswfkscj";
|
||||||
};
|
};
|
||||||
|
|
||||||
# gobject-introspection for finding vapi files
|
# gobject-introspection for finding vapi files
|
||||||
nativeBuildInputs = [ meson ninja vala gobject-introspection pkgconfig gettext itstool python3 libxml2 wrapGAppsHook ];
|
nativeBuildInputs = [
|
||||||
|
meson ninja vala gobject-introspection pkgconfig gettext itstool python3
|
||||||
|
libxml2 wrapGAppsHook desktop-file-utils
|
||||||
|
];
|
||||||
buildInputs = [ gtk3 librsvg gnome3.adwaita-icon-theme libgnome-games-support libgee ];
|
buildInputs = [ gtk3 librsvg gnome3.adwaita-icon-theme libgnome-games-support libgee ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x data/meson_compile_gschema.py # patchShebangs requires executable file
|
chmod +x build-aux/meson_post_install.py
|
||||||
patchShebangs data/meson_compile_gschema.py
|
patchShebangs build-aux/meson_post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
|
Loading…
Reference in New Issue