77 lines
1.3 KiB
Nix
77 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitLab
|
|
, nix-update-script
|
|
, pkg-config
|
|
, itstool
|
|
, gtk3
|
|
, wrapGAppsHook
|
|
, meson
|
|
, librsvg
|
|
, libxml2
|
|
, desktop-file-utils
|
|
, pysolfc
|
|
, guile
|
|
, libcanberra-gtk3
|
|
, ninja
|
|
, appstream-glib
|
|
, yelp-tools
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aisleriot";
|
|
version = "3.22.20";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "GNOME";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-5xFwlhT9qjtvNDQ8kfGd2BeK2KcJDzpfsEC8z4Ei3ns=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook
|
|
meson
|
|
ninja
|
|
appstream-glib
|
|
pkg-config
|
|
itstool
|
|
libxml2
|
|
desktop-file-utils
|
|
yelp-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
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 = {
|
|
updateScript = nix-update-script {
|
|
attrPath = "gnome.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Apps/Aisleriot";
|
|
description = "A collection of patience games written in guile scheme";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|