Files
nixpkgs/pkgs/by-name/st/statserial/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchurl,
ncurses,
glibc,
}:
stdenv.mkDerivation rec {
pname = "statserial";
version = "1.1";
src = fetchurl {
url = "http://www.ibiblio.org/pub/Linux/system/serial/statserial-${version}.tar.gz";
sha256 = "0rrrmxfba5yn836zlgmr8g9xnrpash7cjs7lk2m44ac50vakpks0";
};
postPatch = ''
substituteInPlace Makefile \
--replace '-lcurses' '-lncurses'
substituteInPlace Makefile \
--replace 'LDFLAGS = -s -N' '#LDFLAGS = -s -N'
'';
buildInputs = [
ncurses
glibc
];
installPhase = ''
mkdir -p $out/bin
cp statserial $out/bin
mkdir -p $out/share/man/man1
cp statserial.1 $out/share/man/man1
'';
meta = with lib; {
homepage = "https://sites.google.com/site/tranter/software";
description = "Display serial port modem status lines";
license = licenses.gpl2Plus;
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 ];
mainProgram = "statserial";
};
}