nixpkgs/pkgs/applications/terminal-emulators/microcom/default.nix
Ahmad Fatoum 46fc99a2b1 microcom: 2019.01.0 -> 2023.09.0
Most importantly, this release switches to using flock on the TTY device
instead of lock files, which necessitated the constant use of --force.

Diff: https://github.com/pengutronix/microcom/compare/v2019.01.0...v2023.09.0

Changelog: https://github.com/pengutronix/microcom/releases/tag/v2023.09.0
2023-09-07 12:27:48 +02:00

29 lines
675 B
Nix

{ stdenv,
lib,
fetchFromGitHub,
readline,
autoreconfHook }:
stdenv.mkDerivation rec {
pname = "microcom";
version = "2023.09.0";
src = fetchFromGitHub {
owner = "pengutronix";
repo = pname;
rev = "v${version}";
hash = "sha256-CT/myxOK4U3DzliGsa45WMIFcYLjcoxx6w5S1NL5c7Y=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ readline ];
meta = with lib; {
description = "A minimalistic terminal program for communicating
with devices over a serial connection";
inherit (src.meta) homepage;
license = licenses.gpl2;
maintainers = with maintainers; [ emantor ];
platforms = with platforms; linux;
};
}