From 4f2c7dff1e9b3b4cc7d370bed197a7b9a2999fdb Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 12 Dec 2025 22:48:59 +0800 Subject: [PATCH] xed-editor: 3.8.5 -> 3.8.6 https://github.com/linuxmint/xed/compare/3.8.5...3.8.6 --- pkgs/by-name/xe/xed-editor/package.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/xe/xed-editor/package.nix b/pkgs/by-name/xe/xed-editor/package.nix index 89a4b75fb664..faf9c3c7591b 100644 --- a/pkgs/by-name/xe/xed-editor/package.nix +++ b/pkgs/by-name/xe/xed-editor/package.nix @@ -2,7 +2,6 @@ stdenv, lib, fetchFromGitHub, - fetchpatch, libxml2, libpeas, glib, @@ -13,6 +12,7 @@ xapp-symbolic-icons, pkg-config, python3, + python3Packages, meson, ninja, versionCheckHook, @@ -23,25 +23,19 @@ stdenv.mkDerivation rec { pname = "xed-editor"; - version = "3.8.5"; + version = "3.8.6"; src = fetchFromGitHub { owner = "linuxmint"; repo = "xed"; rev = version; - hash = "sha256-iPD9SawHA0bwnZvC+IyMq9cFE1YOYLISehUJjTXiqGw="; + hash = "sha256-CeKgJg9pyQdnpatdlgqviLnzNv9JCVDm+bFv56trrT8="; }; patches = [ # We patch gobject-introspection and meson to store absolute paths to libraries in typelibs # but that requires the install_dir is an absolute path. ./correct-gir-lib-path.patch - - # Switch to girepository-2.0 - (fetchpatch { - url = "https://src.fedoraproject.org/rpms/xed/raw/6c1a775158f166a3bc5759a6c7bd57bab8f2771a/f/libpeas_libgirepository2.patch"; - hash = "sha256-wGbmS33YHMiSfd3S0fQRhL6tT536kto69MSgPkY2QIs="; - }) ]; nativeBuildInputs = [ @@ -62,6 +56,7 @@ stdenv.mkDerivation rec { gtksourceview4 libpeas gspell + python3Packages.pygobject3 xapp ];