Merge pull request #95671 from dasj19/aisleriot-update
aisleriot: 3.22.9 -> 3.22.11
This commit is contained in:
commit
ef5246f027
@ -1,23 +1,64 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3
|
{ stdenv
|
||||||
, wrapGAppsHook, librsvg, libxml2, desktop-file-utils
|
, fetchFromGitLab
|
||||||
, guile_2_0, libcanberra-gtk3 }:
|
, pkg-config
|
||||||
|
, gnome3
|
||||||
|
, itstool
|
||||||
|
, gtk3
|
||||||
|
, wrapGAppsHook
|
||||||
|
, meson
|
||||||
|
, librsvg
|
||||||
|
, libxml2
|
||||||
|
, desktop-file-utils
|
||||||
|
, pysolfc
|
||||||
|
, guile
|
||||||
|
, libcanberra-gtk3
|
||||||
|
, ninja
|
||||||
|
, appstream-glib
|
||||||
|
, yelp-tools
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "aisleriot";
|
pname = "aisleriot";
|
||||||
version = "3.22.9";
|
version = "3.22.11";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitLab {
|
||||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
owner = "GNOME";
|
||||||
sha256 = "0yzdh9cw5cjjgvfh75bihl968czlgfmpmn1z0fdk88sgvpjgzwji";
|
repo = pname;
|
||||||
|
domain = "gitlab.gnome.org";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1asm0y6485xqsysdg586y3hzz8bhxqwnc82k6vhfnxpxz7l62qa1";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
nativeBuildInputs = [
|
||||||
"--with-card-theme-formats=svg"
|
wrapGAppsHook
|
||||||
"--with-platform=gtk-only" # until they remove GConf
|
meson
|
||||||
|
ninja
|
||||||
|
appstream-glib
|
||||||
|
pkg-config
|
||||||
|
itstool
|
||||||
|
libxml2
|
||||||
|
desktop-file-utils
|
||||||
|
yelp-tools
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool itstool wrapGAppsHook libxml2 desktop-file-utils ];
|
buildInputs = [
|
||||||
buildInputs = [ gtk3 librsvg guile_2_0 libcanberra-gtk3 ];
|
gtk3
|
||||||
|
librsvg
|
||||||
|
guile
|
||||||
|
libcanberra-gtk3
|
||||||
|
pysolfc
|
||||||
|
];
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
patchShebangs cards/meson_svgz.sh
|
||||||
|
patchShebangs data/meson_desktopfile.py
|
||||||
|
patchShebangs data/icons/meson_updateiconcache.py
|
||||||
|
patchShebangs src/lib/meson_compileschemas.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
mesonFlags = [
|
||||||
|
"-Dtheme_kde=false"
|
||||||
|
];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
|
Loading…
Reference in New Issue
Block a user