ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / mi / microcom / package.nix
blob8f9639dcfcd486213c521aa150096b7165c8fdc4
1 { stdenv,
2   lib,
3   fetchFromGitHub,
4   readline,
5   autoreconfHook }:
7 stdenv.mkDerivation rec {
8   pname = "microcom";
9   version = "2023.09.0";
11   src = fetchFromGitHub {
12     owner = "pengutronix";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-CT/myxOK4U3DzliGsa45WMIFcYLjcoxx6w5S1NL5c7Y=";
16   };
18   nativeBuildInputs = [ autoreconfHook ];
19   buildInputs = [ readline ];
21   meta = with lib; {
22     description = "Minimalistic terminal program for communicating
23     with devices over a serial connection";
24     inherit (src.meta) homepage;
25     license = licenses.gpl2;
26     maintainers = with maintainers; [ emantor ];
27     platforms = with platforms; linux;
28     mainProgram = "microcom";
29   };