mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
46 lines
1.2 KiB
Nix
46 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";
|
|
};
|
|
}
|