gnome3.gnome-sudoku: 3.28.0 → 3.30.0
This commit is contained in:
parent
2dd1afd37e
commit
9637215623
|
@ -1,23 +1,30 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, gnome3, wrapGAppsHook
|
||||
, json-glib, qqwing, itstool, libxml2 }:
|
||||
{ stdenv, fetchurl, meson, ninja, vala, pkgconfig, gobjectIntrospection, gettext, gtk3, gnome3, wrapGAppsHook
|
||||
, json-glib, qqwing, itstool, libxml2, python3, desktop-file-utils }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-sudoku-${version}";
|
||||
version = "3.28.0";
|
||||
version = "3.30.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-sudoku/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||
sha256 = "07b4lzniaf3gjsss6zl1lslv18smwc4nrijykvn2z90f423q2xav";
|
||||
sha256 = "1xy986s51jnrcqwan2hy4bjdg6797yr9s7gxx2z2q4j4gkx3qa1f";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja vala pkgconfig gobjectIntrospection gettext itstool libxml2 python3 desktop-file-utils wrapGAppsHook ];
|
||||
buildInputs = [ gtk3 gnome3.libgee json-glib qqwing ];
|
||||
|
||||
postPatch = ''
|
||||
chmod +x post_install.py # patchShebangs requires executable file
|
||||
patchShebangs post_install.py
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript { packageName = "gnome-sudoku"; attrPath = "gnome3.gnome-sudoku"; };
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = "gnome-sudoku";
|
||||
attrPath = "gnome3.gnome-sudoku";
|
||||
};
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ intltool wrapGAppsHook gtk3 gnome3.libgee
|
||||
json-glib qqwing itstool libxml2 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Sudoku;
|
||||
description = "Test your logic skills in this number grid puzzle";
|
||||
|
|
Loading…
Reference in New Issue