depot/third_party/nixpkgs/pkgs/desktops/gnome/games/gnome-sudoku/default.nix

65 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchurl
, meson
, ninja
, vala
, pkg-config
, gobject-introspection
, gettext
, gtk3
, gnome
, wrapGAppsHook
, libgee
, json-glib
, qqwing
, itstool
, libxml2
, desktop-file-utils
}:
stdenv.mkDerivation rec {
pname = "gnome-sudoku";
version = "43.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-sudoku/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "we6/QJPzNrSJ+5HHMO2mcdpo7vZeYZehKYqVRseImZ8=";
};
nativeBuildInputs = [
meson
ninja
vala
pkg-config
gobject-introspection
gettext
itstool
libxml2
desktop-file-utils
wrapGAppsHook
];
buildInputs = [
gtk3
libgee
json-glib
qqwing
];
passthru = {
updateScript = gnome.updateScript {
packageName = "gnome-sudoku";
attrPath = "gnome.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.gpl3Plus;
platforms = platforms.unix;
};
}