gtranslator: fix build with meson 0.61

This commit is contained in:
Bobby Rong 2022-03-24 15:08:22 +08:00 committed by Jan Tojnar
parent b43e9c65eb
commit 50bc0910b6

View file

@ -1,5 +1,7 @@
{ lib, stdenv
{ stdenv
, lib
, fetchurl
, fetchpatch
, meson
, ninja
, pkg-config
@ -30,6 +32,15 @@ stdenv.mkDerivation rec {
sha256 = "E28R/gOhlJkMQ6/jOL0eoK0U5+H26Gjlv3xbUsTF5eE=";
};
patches = [
# Fix build with meson 0.61
# data/meson.build:15:5: ERROR: Function does not take positional arguments.
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gtranslator/-/commit/7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch";
sha256 = "aRg6dYweftV8F7FXykO7m0G+p4SLTFnhTcZx72UCMDE=";
})
];
nativeBuildInputs = [
meson
ninja