Merge pull request #187200 from LibreCybernetics/babl-fix

[staging-next] babl: fix compilation with meson 0.63
This commit is contained in:
Jan Tojnar 2022-08-18 04:24:36 +02:00 committed by GitHub
commit 07b19b3210
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
{ stdenv
, lib
, fetchpatch
, fetchurl
, meson
, ninja
@ -20,6 +21,13 @@ stdenv.mkDerivation rec {
sha256 = "sha256-9mdzUCiUS2N1rRjxYKZM65P1x9zKqdh1HeNZd3SIosE=";
};
patches = [
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/babl/-/commit/b05b2826365a7dbc6ca1bf0977b848055cd0cbb6.patch";
hash = "sha256-zyDOc6FcVyZeMij1XjJ46XXWLO5MMz9ZqLKjjT6VSCI=";
})
];
nativeBuildInputs = [
meson
ninja