mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
font-manager: 0.8.5-1 → 0.8.6
Fixes a crash with GNOME 40. https://github.com/FontManager/font-manager/releases/tag/0.8.6 Had to backport patches for the settings to actually work. https://github.com/FontManager/font-manager/issues/215
This commit is contained in:
parent
0cb07fcdd1
commit
5a37be5fc9
@ -1,20 +1,61 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, gettext, python3,
|
{ lib
|
||||||
pkg-config, libxml2, json-glib , sqlite, itstool, yelp-tools,
|
, stdenv
|
||||||
vala, gtk3, gnome3, desktop-file-utils, wrapGAppsHook, gobject-introspection,
|
, fetchFromGitHub
|
||||||
libsoup, webkitgtk
|
, meson
|
||||||
|
, fetchpatch
|
||||||
|
, ninja
|
||||||
|
, gettext
|
||||||
|
, python3
|
||||||
|
, pkg-config
|
||||||
|
, libxml2
|
||||||
|
, json-glib
|
||||||
|
, sqlite
|
||||||
|
, itstool
|
||||||
|
, yelp-tools
|
||||||
|
, vala
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, gtk3
|
||||||
|
, gnome3
|
||||||
|
, desktop-file-utils
|
||||||
|
, wrapGAppsHook
|
||||||
|
, gobject-introspection
|
||||||
|
, libsoup
|
||||||
|
, glib-networking
|
||||||
|
, webkitgtk
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "font-manager";
|
pname = "font-manager";
|
||||||
version = "0.8.5-1";
|
version = "0.8.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "FontManager";
|
owner = "FontManager";
|
||||||
repo = "master";
|
repo = "master";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1p0hfnf06892hn25a6zv8fnhbh4ln11nn2fv1vjqs63rr59fprbk";
|
sha256 = "0a18rbdy9d0fj0vnsc2rm7xlh17vjqn4kdyrq0ldzlzkb6zbdk2k";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix some Desktop Settings with GNOME 40.
|
||||||
|
# https://github.com/FontManager/font-manager/issues/215
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/FontManager/font-manager/commit/b28f325d7951a66ebf1a2a432ee09fd22048a033.patch";
|
||||||
|
sha256 = "dKbrXGb9a4JuG/4x9vprMlh5J17HKJFifRWq9BWp1ow=";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/FontManager/font-manager/commit/2147204d4c4c6b58161230500186c3a5d4eeb1c1.patch";
|
||||||
|
sha256 = "2/PFLwf7h76fIIN4+lyjg/L0KVU1hhRQCfwCAGDpb00=";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/FontManager/font-manager/commit/3abc541ef8606727c72af7631c021809600336ac.patch";
|
||||||
|
sha256 = "rJPnW+7uuFLxTf5tk+Rzo+xkw2+uzU6BkzPXLeR/RGc=";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/FontManager/font-manager/commit/03a822f0d7b72442cd2ffcc8668da265d3535e0d.patch";
|
||||||
|
sha256 = "3Z2UqK5VV2bIwpGd1tA7fivd7ooIuV6CxTJhzgOAkIM=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
meson
|
meson
|
||||||
@ -34,12 +75,18 @@ stdenv.mkDerivation rec {
|
|||||||
libxml2
|
libxml2
|
||||||
json-glib
|
json-glib
|
||||||
sqlite
|
sqlite
|
||||||
|
gsettings-desktop-schemas # for font settings
|
||||||
gtk3
|
gtk3
|
||||||
gnome3.adwaita-icon-theme
|
gnome3.adwaita-icon-theme
|
||||||
libsoup
|
libsoup
|
||||||
|
glib-networking # for SSL so that Google Fonts can load
|
||||||
webkitgtk
|
webkitgtk
|
||||||
];
|
];
|
||||||
|
|
||||||
|
mesonFlags = [
|
||||||
|
"-Dreproducible=true" # Do not hardcode build directory…
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x meson_post_install.py
|
chmod +x meson_post_install.py
|
||||||
patchShebangs meson_post_install.py
|
patchShebangs meson_post_install.py
|
||||||
|
Loading…
Reference in New Issue
Block a user