nixpkgs/pkgs/by-name/mi/microcom/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
703 B
Nix
Raw Normal View History

2020-01-10 18:10:00 +00:00
{ stdenv,
lib,
fetchFromGitHub,
readline,
autoreconfHook }:
stdenv.mkDerivation rec {
pname = "microcom";
version = "2023.09.0";
2020-01-10 18:10:00 +00:00
src = fetchFromGitHub {
owner = "pengutronix";
repo = pname;
rev = "v${version}";
hash = "sha256-CT/myxOK4U3DzliGsa45WMIFcYLjcoxx6w5S1NL5c7Y=";
2020-01-10 18:10:00 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ readline ];
meta = with lib; {
description = "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;
2023-11-27 01:17:53 +00:00
mainProgram = "microcom";
2020-01-10 18:10:00 +00:00
};
}