2024-05-15 15:35:15 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitLab,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
pkg-config,
|
|
|
|
wrapGAppsHook4,
|
|
|
|
desktop-file-utils,
|
|
|
|
libadwaita,
|
|
|
|
json-glib,
|
|
|
|
vte-gtk4,
|
|
|
|
libportal-gtk4,
|
|
|
|
pcre2,
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "46.5";
|
2024-05-15 15:35:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
owner = "chergert";
|
|
|
|
repo = "ptyxis";
|
|
|
|
rev = version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-PHjQJEM0W26ZpzW//+gsYCCq0lcikWh0707kDXxryAo=";
|
2024-05-15 15:35:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
vte-gtk4-patched = vte-gtk4.overrideAttrs (prev: {
|
|
|
|
patches = (prev.patches or [ ]) ++ [
|
2024-07-27 06:49:29 +00:00
|
|
|
"${src}/build-aux/0001-a11y-implement-GtkAccessibleText.patch"
|
2024-05-15 15:35:15 +00:00
|
|
|
"${src}/build-aux/0001-add-notification-and-shell-precmd-preexec.patch"
|
|
|
|
];
|
|
|
|
});
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "ptyxis";
|
|
|
|
inherit version src;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
wrapGAppsHook4
|
|
|
|
desktop-file-utils
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libadwaita
|
|
|
|
json-glib
|
|
|
|
vte-gtk4-patched
|
|
|
|
libportal-gtk4
|
|
|
|
pcre2
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit vte-gtk4-patched;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Terminal for GNOME with first-class support for containers";
|
2024-05-15 15:35:15 +00:00
|
|
|
homepage = "https://gitlab.gnome.org/chergert/ptyxis";
|
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
mainProgram = "ptyxis";
|
|
|
|
maintainers = with lib.maintainers; [ aleksana ];
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|