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

36 lines
1.1 KiB
Nix
Raw Normal View History

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