Merge pull request #181789 from bobby285271/pantheon

pantheon.elementary-files: fix crash when removing bookmark

Changed files
+10
pkgs
desktops
pantheon
apps
elementary-files
+10
pkgs/desktops/pantheon/apps/elementary-files/default.nix
···
{ lib
, stdenv
, fetchFromGitHub
+
, fetchpatch
, nix-update-script
, pkg-config
, meson
···
version = "6.1.4";
outputs = [ "out" "dev" ];
+
+
patches = [
+
# Fix terminal critical warnings and possible crash when removing bookmark
+
# https://github.com/elementary/files/pull/2062
+
(fetchpatch {
+
url = "https://github.com/elementary/files/commit/daa5ab244b45aafdd7be49eb0bd6f052ded5b5a7.patch";
+
sha256 = "sha256-crGvbo9Ye9656cOy6YqNreMLE2pEMO0Rg8oz81OfJkw=";
+
})
+
];
src = fetchFromGitHub {
owner = "elementary";