Merge pull request #207245 from bobby285271/e-files-bpo

pantheon.elementary-files: Backport upstream fix for bookmark icon
This commit is contained in:
Bobby Rong 2022-12-23 16:36:08 +08:00 committed by GitHub
commit 18c6bd109d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, nix-update-script
, pkg-config
, meson
@ -39,6 +40,15 @@ stdenv.mkDerivation rec {
sha256 = "sha256-pJFeMG2aGaMkS00fSoRlMR2YSg5YzwqwaQT8G7Gk5S4=";
};
patches = [
# Ensure special user directory icon used for bookmark
# https://github.com/elementary/files/pull/2106
(fetchpatch {
url = "https://github.com/elementary/files/commit/00b1c2a975aeab378ed6eb1d90c8988f82596add.patch";
sha256 = "sha256-F/Vk7dg57uBBMO4WOJ/7kKbRNMZuWZ3QfrBfEIBozbw=";
})
];
nativeBuildInputs = [
desktop-file-utils
meson