nixpkgs/pkgs/applications/editors/gedit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
2.3 KiB
Nix
Raw Normal View History

2022-02-16 08:17:55 +00:00
{ stdenv
, lib
, meson
, mesonEmulatorHook
, fetchurl
, python3
, python3Packages
2021-01-17 02:21:50 +00:00
, pkg-config
, gtk3
2022-04-03 09:21:59 +00:00
, gtk-mac-integration
, glib
, tepl
, libgedit-amtk
, libgedit-gtksourceview
, libpeas
2022-02-16 08:17:55 +00:00
, libxml2
, gsettings-desktop-schemas
, wrapGAppsHook
, gtk-doc
2023-07-01 01:19:14 +00:00
, gobject-introspection
, docbook-xsl-nons
, ninja
, gnome
, gspell
, perl
, itstool
, desktop-file-utils
, vala
}:
stdenv.mkDerivation rec {
pname = "gedit";
version = "46.2";
outputs = [ "out" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/gedit/${lib.versions.major version}/gedit-${version}.tar.xz";
sha256 = "wIZkErrRR+us4tKC/8u1oOmjBLIP1VZAvuIcgebVAe8=";
};
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
];
nativeBuildInputs = [
desktop-file-utils
itstool
2022-02-16 08:17:55 +00:00
libxml2
meson
ninja
perl
2021-01-17 02:21:50 +00:00
pkg-config
python3
python3Packages.wrapPython
vala
wrapGAppsHook
gtk-doc
2023-07-01 01:19:14 +00:00
gobject-introspection
docbook-xsl-nons
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
];
2018-03-22 18:47:02 +00:00
buildInputs = [
tepl
glib
gsettings-desktop-schemas
gspell
gtk3
libgedit-amtk
libgedit-gtksourceview
libpeas
2022-04-03 09:21:59 +00:00
] ++ lib.optionals stdenv.isDarwin [
gtk-mac-integration
2018-03-22 18:47:02 +00:00
];
postPatch = ''
chmod +x build-aux/meson/post_install.py
chmod +x plugins/externaltools/scripts/gedit-tool-merge.pl
patchShebangs build-aux/meson/post_install.py
patchShebangs plugins/externaltools/scripts/gedit-tool-merge.pl
'';
# Reliably fails to generate gedit-file-browser-enum-types.h in time
enableParallelBuilding = false;
pythonPath = with python3Packages; [
# https://github.com/NixOS/nixpkgs/issues/298716
pycairo
];
postFixup = ''
buildPythonPath "$pythonPath"
patchPythonScript $out/lib/gedit/plugins/snippets/document.py
'';
2018-03-22 18:47:02 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-03-22 18:47:02 +00:00
packageName = "gedit";
};
};
meta = with lib; {
homepage = "https://gedit-technology.github.io/apps/gedit/";
description = "Former GNOME text editor";
maintainers = with maintainers; [ bobby285271 ];
2022-02-16 08:17:55 +00:00
license = licenses.gpl2Plus;
2020-04-08 05:04:12 +00:00
platforms = platforms.unix;
mainProgram = "gedit";
};
}