summary refs log tree commit diff
path: root/pkgs/tools/misc/statserial/default.nix
blob: 66ae899b9c5a3ab2e770f1c35874460e90cf0f3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ stdenv, fetchurl, ncurses, glibc }:

stdenv.mkDerivation rec {
  pname = "statserial";
  version = "1.1";

  src = fetchurl {
    url = "http://www.ibiblio.org/pub/Linux/system/serial/${pname}-${version}.tar.gz";
    sha256 = "0rrrmxfba5yn836zlgmr8g9xnrpash7cjs7lk2m44ac50vakpks0";
  };

  postPatch = ''
    substituteInPlace Makefile \
      --replace '-lcurses' '-lncurses'

    substituteInPlace Makefile \
      --replace 'LDFLAGS = -s -N' '#LDFLAGS = -s -N'
  '';

  buildInputs = [ ncurses glibc stdenv ];

  installPhase = ''
  mkdir -p $out/bin
  cp statserial $out/bin

  mkdir -p $out/share/man/man1
  cp statserial.1 $out/share/man/man1
  '';

  meta = with stdenv.lib; {
    homepage = "https://sites.google.com/site/tranter/software";
    description = "Display serial port modem status lines.";
    license = licenses.gpl2;

    longDescription =
      '' Statserial displays a table of the signals on a standard 9-pin or
      25-pin serial port, and indicates the status of the handshaking lines. It
      can be useful for debugging problems with serial ports or modems.
      '';

    platforms = platforms.unix;
    maintainers = with maintainers; [ rps ];
  };
}