pantheon.elementary-screenshot: pull upstream fix for meson 0.61

i18n.merge_file has been ignoring positional arguments for a time and explicitly rejects with error since meson 0.61
main
Bobby Rong 2 years ago
parent fcbcf3e49a
commit d277f1354a
No known key found for this signature in database
GPG Key ID: ED07364437C91161
  1. 10
      pkgs/desktops/pantheon/apps/elementary-screenshot/default.nix

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, nix-update-script
, pkg-config
, meson
@ -28,6 +29,15 @@ stdenv.mkDerivation rec {
sha256 = "sha256-n+L08C/W5YnHZ5P3F1NGUYE2SH94sc4+kr1x+wXZ+cw=";
};
patches = [
# Fix build with meson 0.61
# https://github.com/elementary/screenshot/pull/241
(fetchpatch {
url = "https://github.com/elementary/screenshot/commit/80a5d942e813dd098e1ef0f6629b81d2ccef05ae.patch";
sha256 = "sha256-jOQuzUJvsjqytplLcW9BeIxzi9+/k2GFa4hHVZ3+wts=";
})
];
nativeBuildInputs = [
desktop-file-utils
meson

Loading…
Cancel
Save