Skip to content

Commit

Permalink
ivyterm: init at unstable-2024-10-23
Browse files Browse the repository at this point in the history
ivyterm: update

ivyterm: update cargoHash and rev
  • Loading branch information
genga898 committed Oct 28, 2024
1 parent b143f15 commit f81ce48
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions pkgs/by-name/iv/ivyterm/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
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-vxDJwA+ZM3ROX9d1+o3cXj4LbaO9Wy5jFAVuAPOzCCI=";
};

cargoHash = "sha256-tdaI0diwRjqERmAiuKFhMw4AeqxgMq8YMsZWBjsmd0U=";

nativeBuildInputs = [
pkg-config
wrapGAppsHook4
];

buildInputs = [
cairo
gdk-pixbuf
glib
gtk4
libadwaita
pango
vte-gtk4
];

doInstallCheck = true;

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";
};
}

0 comments on commit f81ce48

Please sign in to comment.