gtksourceview5: Add Nix syntax highlighting

So that the default text editor (GNOME Text Editor) can highlight NixOS configuration out of the box.
This commit is contained in:
Jan Tojnar 2023-01-03 14:44:36 +01:00
parent 677ed08a50
commit 5dc86f23a1

View file

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchurl
, fetchpatch2
, meson
, ninja
, pkg-config
@ -37,6 +38,13 @@ stdenv.mkDerivation rec {
# but not from its own datadr (it assumes it will be in XDG_DATA_DIRS).
# Since this is not generally true with Nix, lets add $out/share unconditionally.
./4.x-nix_share_path.patch
# Add Nix syntax highlighting.
# https://gitlab.gnome.org/GNOME/gtksourceview/-/merge_requests/303
(fetchpatch2 {
url = "https://gitlab.gnome.org/GNOME/gtksourceview/-/commit/2cc7fd079f9fc8b593c727c68a2c783c82299562.patch";
sha256 = "bTYWjEDpdbnUxcYNKl2YtSLfYlMfcbQSSYQjhixOGS8=";
})
];
nativeBuildInputs = [