468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, gnome, gtk3, wrapGAppsHook
|
|
, libxml2, gettext, itstool, meson, ninja, python3
|
|
, vala, desktop-file-utils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-tetravex";
|
|
version = "3.38.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-tetravex/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "06wihvqp2p52zd2dnknsc3rii69qib4a30yp15h558xrg44z3k8z";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript { packageName = "gnome-tetravex"; attrPath = "gnome.gnome-tetravex"; };
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook itstool libxml2 gnome.adwaita-icon-theme
|
|
pkg-config gettext meson ninja python3 vala desktop-file-utils
|
|
];
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/meson_post_install.py
|
|
patchShebangs build-aux/meson_post_install.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Apps/Tetravex";
|
|
description = "Complete the puzzle by matching numbered tiles";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|