mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
cinnamon.xreader: Backport meson 1.2 fix
Because meson 1.2 is already in staging.
This commit is contained in:
parent
e01711b319
commit
dfde395b2a
1 changed files with 10 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, glib
|
||||
, gobject-introspection
|
||||
, intltool
|
||||
|
@ -35,6 +36,15 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-2zqlfoN4L+V237cQ3PVh49YaZfNKGiLqh2JIiGJE340=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix build with meson 1.2, can be dropped on next bump
|
||||
# https://github.com/linuxmint/xreader/issues/612
|
||||
(fetchpatch {
|
||||
url = "https://github.com/linuxmint/xreader/commit/06b18a884c8cf3257ea1f053a82784da078999ed.patch";
|
||||
sha256 = "sha256-+LXEW3OkfhkIcbxtvfQYjdaC18O8imOx22t91ad/XZw=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
shared-mime-info
|
||||
wrapGAppsHook
|
||||
|
|
Loading…
Reference in a new issue