Skip to content

Commit

Permalink
pantheon.elementary-screenshot: pull upstream fix for meson 0.61
Browse files Browse the repository at this point in the history
i18n.merge_file has been ignoring positional arguments for a time and explicitly rejects with error since meson 0.61
  • Loading branch information
bobby285271 committed Jan 13, 2022
1 parent fcbcf3e commit d277f13
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkgs/desktops/pantheon/apps/elementary-screenshot/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, nix-update-script
, pkg-config
, meson
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d277f13

Please sign in to comment.