nixpkgs-suyu/pkgs/desktops/gnome-3/games/gnome-sudoku/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, vala, pkgconfig, gobject-introspection, gettext, gtk3, gnome3, wrapGAppsHook
2019-02-13 22:47:50 +01:00
, libgee, json-glib, qqwing, itstool, libxml2, python3, desktop-file-utils }:
stdenv.mkDerivation rec {
pname = "gnome-sudoku";
2020-03-08 11:59:11 +01:00
version = "3.36.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-sudoku/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-03-08 11:59:11 +01:00
sha256 = "17a1r2jk5yygrxil1dycmamxyvyi64mr29mbyfgcx5hm2fylxxwm";
};
nativeBuildInputs = [ meson ninja vala pkgconfig gobject-introspection gettext itstool libxml2 python3 desktop-file-utils wrapGAppsHook ];
2019-02-13 22:47:50 +01:00
buildInputs = [ gtk3 libgee json-glib qqwing ];
2018-09-05 02:48:25 +02:00
postPatch = ''
2019-03-11 18:38:45 +01:00
chmod +x build-aux/post_install.py
patchShebangs build-aux/post_install.py
2018-09-05 02:48:25 +02:00
'';
passthru = {
2018-09-05 02:48:25 +02:00
updateScript = gnome3.updateScript {
packageName = "gnome-sudoku";
attrPath = "gnome3.gnome-sudoku";
};
};
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Sudoku;
description = "Test your logic skills in this number grid puzzle";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}