Skip to content

Commit

Permalink
microcom: init at 2019.01.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Emantor committed Apr 13, 2020
1 parent 35d8514 commit b6bddf9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/applications/misc/microcom/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ stdenv,
lib,
fetchFromGitHub,
readline,
autoreconfHook }:

stdenv.mkDerivation rec {
pname = "microcom";
version = "2019.01.0";

src = fetchFromGitHub {
owner = "pengutronix";
repo = pname;
rev = "v${version}";
sha256 = "056v28hvagnzns6p8i3bq8609k82d3w1ab2lab5dr4cdfwhs4pqj";
};

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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5118,6 +5118,8 @@ in

mgba = libsForQt5.callPackage ../misc/emulators/mgba { };

microcom = callPackage ../applications/misc/microcom { };

midisheetmusic = callPackage ../applications/audio/midisheetmusic { };

mikutter = callPackage ../applications/networking/instant-messengers/mikutter { };
Expand Down

0 comments on commit b6bddf9

Please sign in to comment.