mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
gtk: use updated blueprint compiler for needed new features
This should be reverted once NixOS stable has a new enough version.
This commit is contained in:
83
nix/blueprint-compiler.nix
Normal file
83
nix/blueprint-compiler.nix
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
{
|
||||||
|
dbus,
|
||||||
|
fetchFromGitLab,
|
||||||
|
gobject-introspection,
|
||||||
|
lib,
|
||||||
|
libadwaita,
|
||||||
|
meson,
|
||||||
|
ninja,
|
||||||
|
python3,
|
||||||
|
stdenv,
|
||||||
|
testers,
|
||||||
|
xvfb-run,
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "blueprint-compiler";
|
||||||
|
version = "0.16.0";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.gnome.org";
|
||||||
|
owner = "jwestman";
|
||||||
|
repo = "blueprint-compiler";
|
||||||
|
rev = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-FnMQtqy+uejWn3tDeaj92h2x9TzyiK5KdlRm55ObgPg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs docs/collect-sections.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libadwaita
|
||||||
|
(python3.withPackages (
|
||||||
|
ps:
|
||||||
|
with ps; [
|
||||||
|
pygobject3
|
||||||
|
]
|
||||||
|
))
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
# For setup hook, so that the compiler can find typelib files
|
||||||
|
gobject-introspection
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
dbus
|
||||||
|
xvfb-run
|
||||||
|
];
|
||||||
|
|
||||||
|
# requires xvfb-run
|
||||||
|
doCheck = !stdenv.hostPlatform.isDarwin && false; # tests time out
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
|
||||||
|
xvfb-run dbus-run-session \
|
||||||
|
--config-file=${dbus}/share/dbus-1/session.conf \
|
||||||
|
meson test --no-rebuild --print-errorlogs
|
||||||
|
|
||||||
|
runHook postCheck
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.tests.version = testers.testVersion {
|
||||||
|
package = finalAttrs.finalPackage;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Markup language for GTK user interface files";
|
||||||
|
mainProgram = "blueprint-compiler";
|
||||||
|
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
|
||||||
|
license = licenses.lgpl3Plus;
|
||||||
|
maintainers = with maintainers; [
|
||||||
|
benediktbroich
|
||||||
|
ranfdev
|
||||||
|
];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
})
|
@ -2,6 +2,7 @@
|
|||||||
mkShell,
|
mkShell,
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
|
callPackage,
|
||||||
bashInteractive,
|
bashInteractive,
|
||||||
gdb,
|
gdb,
|
||||||
#, glxinfo # unused
|
#, glxinfo # unused
|
||||||
@ -34,7 +35,7 @@
|
|||||||
gtk4-layer-shell,
|
gtk4-layer-shell,
|
||||||
gobject-introspection,
|
gobject-introspection,
|
||||||
libadwaita,
|
libadwaita,
|
||||||
blueprint-compiler,
|
# blueprint-compiler,
|
||||||
adwaita-icon-theme,
|
adwaita-icon-theme,
|
||||||
hicolor-icon-theme,
|
hicolor-icon-theme,
|
||||||
harfbuzz,
|
harfbuzz,
|
||||||
@ -62,6 +63,7 @@
|
|||||||
zig2nix,
|
zig2nix,
|
||||||
system,
|
system,
|
||||||
}: let
|
}: let
|
||||||
|
blueprint-compiler = callPackage ./blueprint-compiler.nix {};
|
||||||
# See package.nix. Keep in sync.
|
# See package.nix. Keep in sync.
|
||||||
rpathLibs =
|
rpathLibs =
|
||||||
[
|
[
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
gtk4-layer-shell,
|
gtk4-layer-shell,
|
||||||
gobject-introspection,
|
gobject-introspection,
|
||||||
libadwaita,
|
libadwaita,
|
||||||
blueprint-compiler,
|
# blueprint-compiler,
|
||||||
libxml2,
|
libxml2,
|
||||||
wrapGAppsHook4,
|
wrapGAppsHook4,
|
||||||
gsettings-desktop-schemas,
|
gsettings-desktop-schemas,
|
||||||
@ -47,6 +47,7 @@
|
|||||||
zig_hook = zig_0_13.hook.overrideAttrs {
|
zig_hook = zig_0_13.hook.overrideAttrs {
|
||||||
zig_default_flags = "-Dcpu=baseline -Doptimize=${optimize} --color off";
|
zig_default_flags = "-Dcpu=baseline -Doptimize=${optimize} --color off";
|
||||||
};
|
};
|
||||||
|
blueprint-compiler = callPackage ./blueprint-compiler.nix {};
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "ghostty";
|
pname = "ghostty";
|
||||||
|
Reference in New Issue
Block a user