mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
82 lines
2.3 KiB
Nix
82 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
libtirpc,
|
|
ncurses,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "teapot";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
name = "${pname}-${version}";
|
|
owner = "museoa";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-38XFjRzOGasr030f+mRYT+ptlabpnVJfa+1s7ZAjS+k=";
|
|
};
|
|
|
|
prePatch = ''
|
|
cd src
|
|
'';
|
|
|
|
patches = [
|
|
# include a local file in order to make cc happy
|
|
./001-fix-warning.patch
|
|
# remove the ENABLE_HELP target entirely - lyx and latex are huge!
|
|
./002-remove-help.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
libtirpc
|
|
ncurses
|
|
];
|
|
|
|
# By no known reason libtirpc is not detected
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-I${libtirpc.dev}/include/tirpc" ];
|
|
NIX_LDFLAGS = [ "-ltirpc" ];
|
|
|
|
cmakeConfigureFlags = [
|
|
"-DENABLE_HELP=OFF"
|
|
];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Table Editor And Planner, Or: Teapot";
|
|
longDescription = ''
|
|
Teapot is a compact spreadsheet software originally written by Michael
|
|
Haardt. It features a (n)curses-based text terminal interface, and
|
|
recently also a FLTK-based GUI.
|
|
|
|
These days, it may seem pointless having yet another spreadsheet program
|
|
(and one that doesn't even know how to load Microsoft Excel files). Its
|
|
compact size (130k for the ncurses executable, 140k for the GUI
|
|
executable, 300k for the self-contained Windows EXE) and the fact that it
|
|
can run across serial lines and SSH sessions make it an interesting choice
|
|
for embedded applications and as system administration utility, even more
|
|
so since it has a batch processing mode and comes with example code for
|
|
creating graphs from data sets.
|
|
|
|
Another interesting feature is its modern approach to spread sheet theory:
|
|
It sports true three-dimensional tables and iterative expressions. And
|
|
since it breaks compatibility with the usual notions of big spreadsheet
|
|
packages, it can also throw old syntactic cruft over board which many
|
|
spreadsheets still inherit from the days of VisiCalc on ancient CP/M
|
|
systems.
|
|
'';
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "teapot";
|
|
};
|
|
}
|
|
# TODO: patch/fix FLTK building
|
|
# TODO: add documentation
|