mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
aisleriot: 3.22.9 -> 3.22.11
This commit is contained in:
parent
d93c4e2f85
commit
6e34cdadd3
1 changed files with 53 additions and 12 deletions
|
@ -1,23 +1,64 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3
|
||||
, wrapGAppsHook, librsvg, libxml2, desktop-file-utils
|
||||
, guile_2_0, libcanberra-gtk3 }:
|
||||
{ stdenv
|
||||
, fetchFromGitLab
|
||||
, pkg-config
|
||||
, gnome3
|
||||
, 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.9";
|
||||
version = "3.22.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "0yzdh9cw5cjjgvfh75bihl968czlgfmpmn1z0fdk88sgvpjgzwji";
|
||||
src = fetchFromGitLab {
|
||||
owner = "GNOME";
|
||||
repo = pname;
|
||||
domain = "gitlab.gnome.org";
|
||||
rev = "${version}";
|
||||
sha256 = "1asm0y6485xqsysdg586y3hzz8bhxqwnc82k6vhfnxpxz7l62qa1";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--with-card-theme-formats=svg"
|
||||
"--with-platform=gtk-only" # until they remove GConf
|
||||
nativeBuildInputs = [
|
||||
wrapGAppsHook
|
||||
meson
|
||||
ninja
|
||||
appstream-glib
|
||||
pkg-config
|
||||
itstool
|
||||
libxml2
|
||||
desktop-file-utils
|
||||
yelp-tools
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool itstool wrapGAppsHook libxml2 desktop-file-utils ];
|
||||
buildInputs = [ gtk3 librsvg guile_2_0 libcanberra-gtk3 ];
|
||||
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 = gnome3.updateScript {
|
||||
|
|
Loading…
Reference in a new issue