2024-05-15 15:35:15 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, gtk3, vte, libgudev, wrapGAppsHook3, pcre2 }:
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gtkterm";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "1.3.1";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-06-05 15:53:02 +00:00
|
|
|
owner = "wvdakker";
|
2022-03-30 09:31:56 +00:00
|
|
|
repo = "gtkterm";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = version;
|
2024-06-05 15:53:02 +00:00
|
|
|
sha256 = "sha256-oGqOXIu5P3KfdV6Unm7Nz+BRhb5Z6rne0+e0wZ2EcAI=";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
2024-05-15 15:35:15 +00:00
|
|
|
wrapGAppsHook3
|
2022-03-30 09:31:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
vte
|
|
|
|
libgudev
|
2022-07-14 12:49:19 +00:00
|
|
|
pcre2
|
2022-03-30 09:31:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Simple, graphical serial port terminal emulator";
|
2024-06-05 15:53:02 +00:00
|
|
|
homepage = "https://github.com/wvdakker/gtkterm";
|
2022-03-30 09:31:56 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
longDescription = ''
|
|
|
|
GTKTerm is a simple, graphical serial port terminal emulator for
|
|
|
|
Linux and possibly other POSIX-compliant operating systems. It
|
|
|
|
can be used to communicate with all kinds of devices with a
|
|
|
|
serial interface, such as embedded computers, microcontrollers,
|
|
|
|
modems, GPS receivers, CNC machines and more.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ wentasah ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
mainProgram = "gtkterm";
|
|
|
|
};
|
|
|
|
}
|