tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bootterm: init at 0.5
Philippe Loctaux
1 year ago
d90f320e
4eceb5ba
+41
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
bo
bootterm
package.nix
+41
pkgs/by-name/bo/bootterm/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchFromGitHub,
5
5
+
testers,
6
6
+
}:
7
7
+
8
8
+
stdenv.mkDerivation (finalAttrs: {
9
9
+
pname = "bootterm";
10
10
+
version = "0.5";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "wtarreau";
14
14
+
repo = "bootterm";
15
15
+
rev = "v${finalAttrs.version}";
16
16
+
hash = "sha256-AYpO2Xcd51B2qVUWoyI190BV0pIdA3HfuQJPzJ4yT/U=";
17
17
+
};
18
18
+
19
19
+
makeFlags = [ "PREFIX=$(out)" ];
20
20
+
21
21
+
passthru.tests = {
22
22
+
version = testers.testVersion {
23
23
+
package = finalAttrs.finalPackage;
24
24
+
command = "${finalAttrs.meta.mainProgram} -V";
25
25
+
};
26
26
+
};
27
27
+
28
28
+
meta = {
29
29
+
description = "Simple, reliable and powerful terminal to ease connection to serial ports";
30
30
+
longDescription = ''
31
31
+
BootTerm is a simple, reliable and powerful terminal designed to
32
32
+
ease connection to ephemeral serial ports as found on various SBCs,
33
33
+
and typically USB-based ones.
34
34
+
'';
35
35
+
homepage = "https://github.com/wtarreau/bootterm";
36
36
+
license = lib.licenses.mit;
37
37
+
mainProgram = "bt";
38
38
+
maintainers = with lib.maintainers; [ deadbaed ];
39
39
+
platforms = lib.platforms.unix;
40
40
+
};
41
41
+
})