mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
267ce312b9
https://gitlab.gnome.org/GNOME/gnome-chess/-/compare/47.beta...47.0 Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
66 lines
1.1 KiB
Nix
66 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
meson,
|
|
ninja,
|
|
vala,
|
|
pkg-config,
|
|
desktop-file-utils,
|
|
wrapGAppsHook4,
|
|
gobject-introspection,
|
|
gettext,
|
|
itstool,
|
|
libxml2,
|
|
gnome,
|
|
glib,
|
|
gtk4,
|
|
libadwaita,
|
|
librsvg,
|
|
pango,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-chess";
|
|
version = "47.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-chess/${lib.versions.major version}/gnome-chess-${version}.tar.xz";
|
|
hash = "sha256-OkQ6LHiA5q0TG3Wt2AdO2+WYK3aruEKQT+PfnCxQ6H4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
vala
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
libxml2
|
|
desktop-file-utils
|
|
wrapGAppsHook4
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
librsvg
|
|
pango
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript { packageName = "gnome-chess"; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-chess";
|
|
description = "Play the classic two-player boardgame of chess";
|
|
mainProgram = "gnome-chess";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|