Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
51 lines
943 B
Nix
51 lines
943 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
wrapGAppsHook4,
|
|
cairo,
|
|
gdk-pixbuf,
|
|
glib,
|
|
gtk4,
|
|
libadwaita,
|
|
pango,
|
|
vte-gtk4,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "ivyterm";
|
|
version = "0-unstable-2024-10-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Tomiyou";
|
|
repo = "ivyterm";
|
|
rev = "13ee76dfc88bc92807e328991c7a8586a5b13ac7";
|
|
hash = "sha256-RVHGDgaNYhR/eGTu4bhJvEfd14qFP+u8ApItVc00Bm8=";
|
|
};
|
|
|
|
cargoHash = "sha256-tdaI0diwRjqERmAiuKFhMw4AeqxgMq8YMsZWBjsmd0U=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
gdk-pixbuf
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
pango
|
|
vte-gtk4
|
|
];
|
|
|
|
meta = {
|
|
description = "Terminal emulator implemented in gtk4-rs and VTE4";
|
|
homepage = "https://github.com/Tomiyou/ivyterm";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ genga898 ];
|
|
mainProgram = "ivyterm";
|
|
};
|
|
}
|