Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bootterm: init at 0.5 #352951

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5109,6 +5109,11 @@
githubId = 130508846;
name = "Elliot Cameron";
};
deadbaed = {
name = "Philippe Loctaux";
github = "deadbaed";
githubId = 8809909;
};
dearrude = {
name = "Ebrahim Nejati";
email = "[email protected]";
Expand Down
41 changes: 41 additions & 0 deletions pkgs/by-name/bo/bootterm/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
lib,
stdenv,
fetchFromGitHub,
testers,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "bootterm";
version = "0.5";

src = fetchFromGitHub {
owner = "wtarreau";
repo = "bootterm";
rev = "v${finalAttrs.version}";
hash = "sha256-AYpO2Xcd51B2qVUWoyI190BV0pIdA3HfuQJPzJ4yT/U=";
};

makeFlags = [ "PREFIX=$(out)" ];

passthru.tests = {
version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "${finalAttrs.meta.mainProgram} -V";
};
};

meta = {
description = "Simple, reliable and powerful terminal to ease connection to serial ports";
longDescription = ''
BootTerm is a simple, reliable and powerful terminal designed to
ease connection to ephemeral serial ports as found on various SBCs,
and typically USB-based ones.
'';
homepage = "https://github.com/wtarreau/bootterm";
license = lib.licenses.mit;
mainProgram = "bt";
maintainers = with lib.maintainers; [ deadbaed ];
platforms = lib.platforms.unix;
};
})